/ Published in: XHTML
my take on an xhtml skeleton
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" dir="ltr"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <base href="" /> <!-- meta tags: --> <meta name="Author" content="author" /> <meta name="Description" content="desc" /> <meta name="Copyright" content="copyright" /> <meta name="Robots" content="robots" /> <meta name="Generator" content="generator" /> <meta name="Keywords" content="keywords" /> <!-- optionals: --> <!-- <link rel="Shortcut Icon" href="/favicon.ico" type="image/x-icon" /> --> <!-- <link href="load_your_javascript.js" type="text/javascript" /> --> <!-- css: --> <!-- <link rel="stylesheet" href="/css/screen.css" type="text/css" media="screen, projection" /> --> <!-- <link rel="stylesheet" href="/css/print.css" type="text/css" media="print" /> --> </head> <body> </body> </html>