FAQ

From CSE330 Wiki
Revision as of 15:27, 7 December 2020 by Mitch (talk | contribs) (Created page with "Welcome to the frequently asked questions page for Module 1. As many common questions can come up on Piazza, some of those questions are consolidated here. == HTML Validator...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Welcome to the frequently asked questions page for Module 1. As many common questions can come up on Piazza, some of those questions are consolidated here.

HTML Validator

Students frequently see the following error message when putting their code through the W3C Validator.

The character encoding was not declared. Proceed using Windows-1252

Brief explanation of character encoding. This error can be easily solved by including the following line in your HTML header:

<meta charset="utf-8">

Second Question