- From: Lachlan Hunt via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 29 Jan 2009 15:55:49 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/html-author In directory hutz:/tmp/cvs-serv19699 Modified Files: Overview.html Log Message: Regenerated Overview.html from src Index: Overview.html =================================================================== 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:55:59 UTC