Estructura mínima de un documento XHTML


/ Published in: XHTML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5.  
  6. <title>An XHTML 1.0 Strict standard template</title>
  7. <meta http-equiv="content-type"
  8. content="text/html;charset=utf-8" />
  9. <meta http-equiv="Content-Style-Type" content="text/css" />
  10. </head>
  11.  
  12.  
  13. <p>… Your HTML content here …</p>
  14.  
  15. </body>
  16. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.