That's a bad site. This is their "first complete webpage":
Code:
<html>
<head>
<title>My WebPage!</title>
</head>
<body>
Hello World! All my content goes here!
</body>
</html>
As you can see, it includes no DOCTYPE or block-level element. It's completely invalid. The tutorials also contain some misleading information:
Tags should be lower-case letters if you plan on publishing your work. This is the standard for XHTML and Dynamic HTML.
This is a downright lie. It is standard for XHTML, and the page will not work in XHTML with upper-case tags, because XHTML is case-sensitive. However, HTML is case-insensitive, and indeed the notation used in the standard has element names in upper-case.
Here's some of their sample "HTML code":(note for newbies: this is not HTML). They also suggest using deprecated presentational markup:
Code:
<body>Body Tag (acts as a content shell)
<p>Paragraph Tag</p>
<h2>Heading Tag</h2>
<b>Bold Tag</b>
<i>Italic Tag</i>
</body>
And, always a dead giveaway, their site is completely invalid transitional pseudo-XHTML, suggesting that they themselves don't actually have a clue what they're talking about. boogyman, it's probably better if you don't link people to this site.
If you're looking for a real tutorial, try http://www.howtocreate.co.uk/.
Bookmarks