jenEliz said:
Check out the blog :)
This course will become read-only in the near future. Tell us at community.p2pu.org if that is a problem.
This task is going to introduce you to writing a basic html document. But you'll do it on paper, using a pen, for fifteen minutes. Think of this challenge as the Webmaking 101 equivalent of wax on, wax off (from the original Karate Kid film).
I hand wrote the code as asked. I did not see a value with the <meta charset...> tag.
Every text document has a specific charset. Most Windows text editors use ISO-8859-1 by default, while most Linux/Unix text editors use UTF-8. The browser doesn't know what charset you used on your text file, so it has to infer it. Most of the time it gets it right, and even when it gets it wrong, as long as you didn't use characters outside the english alphabet it won't matter.
The problem comes when you use characters outside the english alphabet and the browser infers the wrong charset.. then you'll see things like !? instead of á, for example. It's recommended to always use meta charset to help the browser render your html files correctly.
I agree. I guess it is something I need to look into. It's always been part of the code that my editor has taken care of for me! Writing it by hand makes you stop and think about exactly what everything does, what is needed, and how content should be removed from the styling as much as possible.