A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

Example simple: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
== Step 1: The Basics of an HTML5 Document ==
== Step 1: The Basics of an HTML5 Document ==
A basic HTML5 document consists of a DOCTYPE, HTML tag, HEAD tag with TITLE tag and a BODY tag; this is the basis for all HTML5 documents.


<pre>
<pre>
Line 17: Line 19:
</pre>
</pre>


=== DOCTYPE ===


== Step 2: Adding a Heading and Paragraph ==
== Step 2: Adding a Heading and Paragraph ==

Revision as of 09:44, 19 June 2007

Step 1: The Basics of an HTML5 Document

A basic HTML5 document consists of a DOCTYPE, HTML tag, HEAD tag with TITLE tag and a BODY tag; this is the basis for all HTML5 documents.


<!DOCTYPE HTML>
<HTML>
  <HEAD>
    <TITLE>Lost Cat!</TITLE>
  </HEAD>
  <BODY>

<!-- Page content -->

  </BODY>
</HTML>

DOCTYPE

Step 2: Adding a Heading and Paragraph


<!DOCTYPE HTML>
<HTML>
  <HEAD>
    <TITLE>Lost Cat!</TITLE>
  </HEAD>
  <BODY>
    <H1>Have You Seen My Cat?</H1>
    <P>Moggy has been missing since 12th June, 2007 if you see her please
     notify <A href="mailto:[email protected]">Ian Hickson</A>.</P>
  </BODY>
</HTML>

Step 2: Adding an Image


<!DOCTYPE HTML>
<HTML>
  <HEAD>
    <TITLE>Lost Cat!</TITLE>
  </HEAD>
  <BODY>
    <H1>Have You Seen This Cat?</H1>
    <!-- need to get an image of a cat -->
    <P><IMG src="" alt="The cat is black with white paws, and is wearing a
     white collar with a small bell attached."></P>
    <P>Moggy has been missing since 12th June, 2007 if you see her please
     notify <A href="mailto:[email protected]">Ian Hickson</A>.</P>
  </BODY>
</HTML>