<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.whatwg.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Beowulf</id>
	<title>WHATWG Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.whatwg.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Beowulf"/>
	<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/wiki/Special:Contributions/Beowulf"/>
	<updated>2026-05-10T11:39:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2363</id>
		<title>HTML5 tutorial</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2363"/>
		<updated>2007-06-19T21:04:54Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is an HTML 5 tutorial.  There&#039;s nothing here yet, feel free to add something!&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2362</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2362"/>
		<updated>2007-06-19T15:05:04Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: /* Web Browser Results */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This tutorial is aimed at a person using a desktop or laptop computer with a basic text editor. The examples below should be saved to a file with the extension .html. This will help your operating system know that the file is one that should be opened and interpreted by a web browser.&lt;br /&gt;
&lt;br /&gt;
== Step 1: The Basics of an HTML5 Document ==&lt;br /&gt;
&lt;br /&gt;
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. Tags are...&lt;br /&gt;
A comment is...&lt;br /&gt;
The DOCTYPE is an exception... included because...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Page content --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How This Looks ===&lt;br /&gt;
&lt;br /&gt;
Opening this page in a web browser would produce a blank page with a title in the browser window &amp;quot;Lost Cat!&amp;quot;. (link to example)&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding a Heading and Paragraph ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 3: Adding an Image ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2361</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2361"/>
		<updated>2007-06-19T14:02:13Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This tutorial is aimed at a person using a desktop or laptop computer with a basic text editor. The examples below should be saved to a file with the extension .html. This will help your operating system know that the file is one that should be opened and interpreted by a web browser.&lt;br /&gt;
&lt;br /&gt;
== Step 1: The Basics of an HTML5 Document ==&lt;br /&gt;
&lt;br /&gt;
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. Tags are...&lt;br /&gt;
A comment is...&lt;br /&gt;
The DOCTYPE is an exception... included because...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Page content --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Web Browser Results ===&lt;br /&gt;
&lt;br /&gt;
Opening this page in a web browser would produce a blank page with a title in the browser window &amp;quot;Lost Cat!&amp;quot;. (link to example)&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding a Heading and Paragraph ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 3: Adding an Image ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2360</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2360"/>
		<updated>2007-06-19T10:10:55Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This tutorial is aimed at a person using a desktop or laptop computer with a basic text editor. The examples below should be saved to a file with the extension .html. This will help your operating system know that the file is one that should be opened and interpreted by a web browser.&lt;br /&gt;
&lt;br /&gt;
== Step 1: The Basics of an HTML5 Document ==&lt;br /&gt;
&lt;br /&gt;
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. Tags are...&lt;br /&gt;
A comment is...&lt;br /&gt;
The DOCTYPE is an exception... included because...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Page content --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Web Browser Results ===&lt;br /&gt;
&lt;br /&gt;
Opening this page in a web browser would produce a blank page with a title in the browser window &amp;quot;Lost Cat!&amp;quot;. (link to example)&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding a Heading and Paragraph ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    == Step 3: Adding an Image ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2359</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2359"/>
		<updated>2007-06-19T10:08:53Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: /* Step 1: The Basics of an HTML5 Document */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This tutorial is aimed at a person using a desktop or laptop computer with a basic text editor. The examples below should be saved to a file with the extension .html. This will help your operating system know that it&#039;s something that should be opened with a web browser.&lt;br /&gt;
&lt;br /&gt;
== Step 1: The Basics of an HTML5 Document ==&lt;br /&gt;
&lt;br /&gt;
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. Tags are...&lt;br /&gt;
A comment is...&lt;br /&gt;
The DOCTYPE is an exception... included because...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Page content --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Web Browser Results ===&lt;br /&gt;
&lt;br /&gt;
Opening this page in a web browser would produce a blank page with a title in the browser window &amp;quot;Lost Cat!&amp;quot;. (link to example)&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding a Heading and Paragraph ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    == Step 3: Adding an Image ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2358</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2358"/>
		<updated>2007-06-19T09:54:06Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: /* Step 2: Adding an Image */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Step 1: The Basics of an HTML5 Document ==&lt;br /&gt;
&lt;br /&gt;
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. Tags are...&lt;br /&gt;
A comment is...&lt;br /&gt;
The DOCTYPE is an exception... included because...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Page content --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Web Browser Results ===&lt;br /&gt;
&lt;br /&gt;
Opening this page in a web browser would produce a blank page with a title in the browser window &amp;quot;Lost Cat!&amp;quot;. (link to example)&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding a Heading and Paragraph ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    == Step 3: Adding an Image ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2357</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2357"/>
		<updated>2007-06-19T09:52:58Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: /* Step 1: The Basics of an HTML5 Document */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Step 1: The Basics of an HTML5 Document ==&lt;br /&gt;
&lt;br /&gt;
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. Tags are...&lt;br /&gt;
A comment is...&lt;br /&gt;
The DOCTYPE is an exception... included because...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Page content --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Web Browser Results ===&lt;br /&gt;
&lt;br /&gt;
Opening this page in a web browser would produce a blank page with a title in the browser window &amp;quot;Lost Cat!&amp;quot;. (link to example)&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding a Heading and Paragraph ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen My Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding an Image ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2356</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2356"/>
		<updated>2007-06-19T09:47:39Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Step 1: The Basics of an HTML5 Document ==&lt;br /&gt;
&lt;br /&gt;
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. Tags are...&lt;br /&gt;
A comment is...&lt;br /&gt;
The DOCTYPE is an exception... included because...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Page content --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding a Heading and Paragraph ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen My Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding an Image ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2355</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2355"/>
		<updated>2007-06-19T09:46:39Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Step 1: The Basics of an HTML5 Document ==&lt;br /&gt;
&lt;br /&gt;
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. Tags are...&lt;br /&gt;
The DOCTYPE is an exception... included because...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Page content --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding a Heading and Paragraph ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen My Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding an Image ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2354</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2354"/>
		<updated>2007-06-19T09:44:12Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: /* Step 1: The Basics of an HTML5 Document */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Step 1: The Basics of an HTML5 Document ==&lt;br /&gt;
&lt;br /&gt;
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.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Page content --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== DOCTYPE ===&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding a Heading and Paragraph ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen My Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding an Image ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2353</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2353"/>
		<updated>2007-06-19T09:41:09Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Step 1: The Basics of an HTML5 Document ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Page content --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding a Heading and Paragraph ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen My Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Step 2: Adding an Image ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;&amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;The cat is black with white paws, and is wearing a&lt;br /&gt;
     white collar with a small bell attached.&amp;quot;&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please&lt;br /&gt;
     notify &amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;.&amp;lt;/P&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2279</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2279"/>
		<updated>2007-05-28T15:55:29Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;HTML&amp;gt;&lt;br /&gt;
  &amp;lt;HEAD&amp;gt;&lt;br /&gt;
    &amp;lt;TITLE&amp;gt;Lost Cat!&amp;lt;/TITLE&amp;gt;&lt;br /&gt;
  &amp;lt;/HEAD&amp;gt;&lt;br /&gt;
  &amp;lt;BODY&amp;gt;&lt;br /&gt;
    &amp;lt;H1&amp;gt;Have You Seen This Cat?&amp;lt;/H1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;IMG src=&amp;quot;&amp;quot; alt=&amp;quot;Moggy is a black cat with white paws, she is wearing a white collar with a small bell attached&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;P&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please notify:&amp;lt;/P&amp;gt;&lt;br /&gt;
    &amp;lt;ADDRESS&amp;gt;&amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;&amp;lt;/ADDRESS&amp;gt;&lt;br /&gt;
  &amp;lt;/BODY&amp;gt;&lt;br /&gt;
&amp;lt;/HTML&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2278</id>
		<title>Example simple</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=Example_simple&amp;diff=2278"/>
		<updated>2007-05-28T15:43:59Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: messing about..&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!DOCTYPE HTML&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
  &amp;lt;head&amp;gt;&lt;br /&gt;
    &amp;lt;title&amp;gt;Lost Cat!&amp;lt;/title&amp;gt;&lt;br /&gt;
  &amp;lt;/head&amp;gt;&lt;br /&gt;
  &amp;lt;body&amp;gt;&lt;br /&gt;
    &amp;lt;h1&amp;gt;Have You Seen This Cat?&amp;lt;/h1&amp;gt;&lt;br /&gt;
    &amp;lt;!-- need to get an image of a cat --&amp;gt;&lt;br /&gt;
    &amp;lt;p&amp;gt;Moggy has been missing since 12th June, 2007 if you see her please notify:&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;address&amp;gt;&amp;lt;A href=&amp;quot;mailto:ian@whatwg.org&amp;quot;&amp;gt;Ian Hickson&amp;lt;/A&amp;gt;&amp;lt;/address&amp;gt;&lt;br /&gt;
  &amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2277</id>
		<title>HTML5 tutorial</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2277"/>
		<updated>2007-05-28T14:56:10Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is an HTML 5 tutorial.  There&#039;s nothing here yet, feel free to add something!&lt;br /&gt;
&lt;br /&gt;
== Example HTML5 Documents ==&lt;br /&gt;
&lt;br /&gt;
# [[example_simple | Lost Cat, a simple HTML5 page]]&lt;br /&gt;
&lt;br /&gt;
== HTML5 Tags ==&lt;br /&gt;
&lt;br /&gt;
# [[DOCTYPE]]&lt;br /&gt;
# [[HTML]]&lt;br /&gt;
# [[HEAD]]&lt;br /&gt;
# [[BODY]]&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2276</id>
		<title>HTML5 tutorial</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2276"/>
		<updated>2007-05-28T14:53:41Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is an HTML 5 tutorial.  There&#039;s nothing here yet, feel free to add something!&lt;br /&gt;
&lt;br /&gt;
== Example HTML5 Documents ==&lt;br /&gt;
&lt;br /&gt;
# Simple page advertising lost cat&lt;br /&gt;
&lt;br /&gt;
== HTML5 Tags ==&lt;br /&gt;
&lt;br /&gt;
# [[DOCTYPE]]&lt;br /&gt;
# [[HTML]]&lt;br /&gt;
# [[HEAD]]&lt;br /&gt;
# [[BODY]]&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2274</id>
		<title>HTML5 tutorial</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2274"/>
		<updated>2007-05-28T14:51:37Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is an HTML 5 tutorial.  There&#039;s nothing here yet, feel free to add something!&lt;br /&gt;
&lt;br /&gt;
== Tags ==&lt;br /&gt;
&lt;br /&gt;
# [[DOCTYPE]]&lt;br /&gt;
# [[HTML]]&lt;br /&gt;
# [[HEAD]]&lt;br /&gt;
# [[BODY]]&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=DOCTYPE&amp;diff=2272</id>
		<title>DOCTYPE</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=DOCTYPE&amp;diff=2272"/>
		<updated>2007-05-28T14:49:27Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: /* Form */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== About ==&lt;br /&gt;
&lt;br /&gt;
DOCTYPEs are required for legacy reasons. When omitted, browsers tend to use a different rendering mode that is incompatible with some specifications. Including the DOCTYPE in a document ensures that the browser makes a best-effort attempt at following the relevant specifications.&lt;br /&gt;
&lt;br /&gt;
== Form ==&lt;br /&gt;
&lt;br /&gt;
A DOCTYPE must consist of the following characters, in this order:&lt;br /&gt;
&lt;br /&gt;
# A U+003C LESS-THAN SIGN (&amp;lt;) character.&lt;br /&gt;
# A U+0021 EXCLAMATION MARK (!) character.&lt;br /&gt;
# A U+0044 LATIN CAPITAL LETTER D or U+0064 LATIN SMALL LETTER D character.&lt;br /&gt;
# A U+004F LATIN CAPITAL LETTER O or U+006F LATIN SMALL LETTER O character.&lt;br /&gt;
# A U+0043 LATIN CAPITAL LETTER C or U+0063 LATIN SMALL LETTER C character.&lt;br /&gt;
# A U+0054 LATIN CAPITAL LETTER T or U+0074 LATIN SMALL LETTER T character.&lt;br /&gt;
# A U+0059 LATIN CAPITAL LETTER Y or U+0079 LATIN SMALL LETTER Y character.&lt;br /&gt;
# A U+0050 LATIN CAPITAL LETTER P or U+0070 LATIN SMALL LETTER P character.&lt;br /&gt;
# A U+0045 LATIN CAPITAL LETTER E or U+0065 LATIN SMALL LETTER E character.&lt;br /&gt;
# One or more space characters.&lt;br /&gt;
# A U+0048 LATIN CAPITAL LETTER H or U+0068 LATIN SMALL LETTER H character.&lt;br /&gt;
# A U+0054 LATIN CAPITAL LETTER T or U+0074 LATIN SMALL LETTER T character.&lt;br /&gt;
# A U+004D LATIN CAPITAL LETTER M or U+006D LATIN SMALL LETTER M character.&lt;br /&gt;
# A U+004C LATIN CAPITAL LETTER L or U+006C LATIN SMALL LETTER L character.&lt;br /&gt;
# Zero or more space characters.&lt;br /&gt;
# A U+003E GREATER-THAN SIGN (&amp;gt;) character.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;!DOCTYPE HTML&amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=DOCTYPE&amp;diff=2271</id>
		<title>DOCTYPE</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=DOCTYPE&amp;diff=2271"/>
		<updated>2007-05-28T14:48:22Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: New page: == About ==  DOCTYPEs are required for legacy reasons. When omitted, browsers tend to use a different rendering mode that is incompatible with some specifications. Including the DOCTYPE in...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== About ==&lt;br /&gt;
&lt;br /&gt;
DOCTYPEs are required for legacy reasons. When omitted, browsers tend to use a different rendering mode that is incompatible with some specifications. Including the DOCTYPE in a document ensures that the browser makes a best-effort attempt at following the relevant specifications.&lt;br /&gt;
&lt;br /&gt;
== Form ==&lt;br /&gt;
&lt;br /&gt;
A DOCTYPE must consist of the following characters, in this order:&lt;br /&gt;
&lt;br /&gt;
A U+003C LESS-THAN SIGN (&amp;lt;) character.&lt;br /&gt;
A U+0021 EXCLAMATION MARK (!) character.&lt;br /&gt;
A U+0044 LATIN CAPITAL LETTER D or U+0064 LATIN SMALL LETTER D character.&lt;br /&gt;
A U+004F LATIN CAPITAL LETTER O or U+006F LATIN SMALL LETTER O character.&lt;br /&gt;
A U+0043 LATIN CAPITAL LETTER C or U+0063 LATIN SMALL LETTER C character.&lt;br /&gt;
A U+0054 LATIN CAPITAL LETTER T or U+0074 LATIN SMALL LETTER T character.&lt;br /&gt;
A U+0059 LATIN CAPITAL LETTER Y or U+0079 LATIN SMALL LETTER Y character.&lt;br /&gt;
A U+0050 LATIN CAPITAL LETTER P or U+0070 LATIN SMALL LETTER P character.&lt;br /&gt;
A U+0045 LATIN CAPITAL LETTER E or U+0065 LATIN SMALL LETTER E character.&lt;br /&gt;
One or more space characters.&lt;br /&gt;
A U+0048 LATIN CAPITAL LETTER H or U+0068 LATIN SMALL LETTER H character.&lt;br /&gt;
A U+0054 LATIN CAPITAL LETTER T or U+0074 LATIN SMALL LETTER T character.&lt;br /&gt;
A U+004D LATIN CAPITAL LETTER M or U+006D LATIN SMALL LETTER M character.&lt;br /&gt;
A U+004C LATIN CAPITAL LETTER L or U+006C LATIN SMALL LETTER L character.&lt;br /&gt;
Zero or more space characters.&lt;br /&gt;
A U+003E GREATER-THAN SIGN (&amp;gt;) character.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;!DOCTYPE HTML&amp;gt;&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2270</id>
		<title>HTML5 tutorial</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2270"/>
		<updated>2007-05-28T14:47:29Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is an HTML 5 tutorial.  There&#039;s nothing here yet, feel free to add something!&lt;br /&gt;
&lt;br /&gt;
# [[DOCTYPE]]&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
	<entry>
		<id>https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2269</id>
		<title>HTML5 tutorial</title>
		<link rel="alternate" type="text/html" href="https://wiki.whatwg.org/index.php?title=HTML5_tutorial&amp;diff=2269"/>
		<updated>2007-05-28T14:47:12Z</updated>

		<summary type="html">&lt;p&gt;Beowulf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is an HTML 5 tutorial.  There&#039;s nothing here yet, feel free to add something!&lt;br /&gt;
&lt;br /&gt;
# DOCTYPE&lt;/div&gt;</summary>
		<author><name>Beowulf</name></author>
	</entry>
</feed>