Yes: 'I don't understand what I'm doing, so I'm going to tailor my site to an antiquated DOCTYPE based on the previous version of HTML' is not good thinking.
Your HTML is really very mangled. I would suggest you start with a good tutorial, but just to get you kick-started, the outline of your document should look like this (<!-- ... --> denotes a comment; these blocks are here for your information only, and you can safely remove them):
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!-- This is the DOCTYPE, the thing that tells the parser
what sort of markup we'll be using in this page.
This is the *only* thing that should be outside the
<html> element. -->
<html>
<head>
<!-- This is the <head> of your document. Assorted
data to do with the document that isn't part of the
actual displayed content will go here. -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- This specifies that your page should be interpreted
as UTF-8, a Unicode encoding. At the moment your
page doesn't actually validate as UTF-8, but you
should probably convert it (there will be an option
in your editor). -->
<title>The title of your Web page</title>
<!-- This is the title of your Web page. It will appear
in the title bar or on the tab in most current
browsers when accessing your page. -->
</head>
<body>
<!-- The content of your page goes here, but don't put
text directly here: it needs to be wrapped in block
elements like <p> or <div>. How you organise
your content depends on what it is.
Generally you will have a few <div>s that divide
the page up into things like title, navigation,
content, and footer, and then <p>s within the content
section to denote paragraphs; for the navigation,
one or more <ul>s is usually the best course. -->
</body>
</html>
Bookmarks