- From: poot <cvsmail@w3.org>
- Date: Fri, 30 Jan 2009 00:56:21 +0900 (JST)
- To: public-html-diffs@w3.org
Regenerated Overview.html from src
2 Getting Started with HTML 5
http://people.w3.org/mike/diffs/html5/html-author/Overview.1.23.html#getting-started-with-html-5
2.1 A Basic Document
http://people.w3.org/mike/diffs/html5/html-author/Overview.1.23.html#a-basic-document
http://people.w3.org/mike/diffs/html5/html-author/Overview.diff.html
http://dev.w3.org/cvsweb/html5/html-author/Overview.html?r1=1.22&r2=1.23&f=h
===================================================================
RCS file: /sources/public/html5/html-author/Overview.html,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- Overview.html 29 Jan 2009 15:54:11 -0000 1.22
+++ Overview.html 29 Jan 2009 15:55:47 -0000 1.23
@@ -183,14 +183,25 @@
<section>
<h3 id=a-basic-document><span class=secno>2.1 </span>A Basic Document</h3>
-
+
<p>To begin, we're going to create a very basic HTML document, which
- will also serve as a useful template for future HTML documents. All
- HTML documents need to begin with a DOCTYPE.</p>
-
+ will also serve as a useful template for future HTML documents. Open
+ a text editor and create a new, empty file. I suggest you save the
+ file as <kbd>example01.html</kbd>.</p>
+
+ <p>All HTML documents need to begin with a DOCTYPE. In your text editor,
+ type the following on the first line, and save the file.</p>
+
<div class="html example">
<pre><!DOCTYPE html></pre>
</div>
+
+ <p>It's good practice to get in the habit of always typing that as the
+ first line in all new HTML documents you create. This line is used
+ to indicate that the document is an HTML 5 document</p>
+
+ <p></p>
+
</section>
<section>
Received on Thursday, 29 January 2009 15:56:59 UTC