oscom-lenya-notimes/pubs/notimes/config/doctypes/samples xhtml.xml,NONE,1.1

Michael Wechner <[email protected]> Wed, 11 Jun 2003 17:08:30 +0200
Newsgroups gmane.comp.cms.wyona.cvs
Message-ID <[email protected]>
Update of /usr/local/repositories/oscom-lenya-notimes/pubs/notimes/config/doctypes/samples
In directory erbium:/tmp/cvs-serv31162/pubs/notimes/config/doctypes/samples

Added Files:
	xhtml.xml 
Log Message:
XHTML DocType added

--- NEW FILE: xhtml.xml ---
<?xml version="1.0" encoding="UTF-8"?>

<!--
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-->

<html>
<!--
<html xmlns="http://www.w3.org/1999/xhtml">
-->
  <head>
    <title>Head Title</title>
  </head>
  <body>
    <h1>H1 Title</h1>
    <p>This document is XHTML. You can use all the XHTML elements</p>
    <p>This is an unoredered list:</p>
    <ul>
      <li>list item 1</li>
      <li>list item 2</li>
      <li>list item 3</li>
    </ul>
    <p>This is a table:</p>
    <table border="1">
      <tr><td>rc11</td><td>rc12</td></tr>
      <tr><td>rc21</td><td>rc22</td></tr>
    </table>
  </body>
</html>