Let’s start with the simplest web page:
<h1>Hello World!</h1>
Well, that’s nice, but there’s certain information missing. We should add a doctype to let the browser know what flavor of HTML, XHTML, etc we’re using. This declares the document type definition (DTD) in use for the document.
We should also add things like the HTML elements, a HEAD element for specifying more information about the page, a BODY for the contents.
We should also let the browser know our character encoding with a meta tag.
So now we have: Read the rest of this entry »


