This is an example about HTML5 Template:
<!DOCTYPE html>
<html>
<head>
<title>HTML5 template</title>
<metacharset = "utf-8"/>
<scripttype = "text/javascript">
document.createElement('header');
document.createElement('menu');
document.createElement('content');
document.createElement('footer');
</script>
<style type="text/css">
* {
margin:0 ;
padding:0 ;
}
header, menu, content, footer {
display:block ;
}
menu ul {
list-style-type:none ;
}
menu ul li {
float:left ;
padding:5px20px ;
}
content, footer {
clear:both ;
}
</style>
</head>
<body>
<header>
<h1>A Blank HTML5 template</h1>
<menu>
<ul>
<li>
<ahref = "http://html5snippets.com"title = "snippets">HTML5 snippets</a>
</li>
<li>
<ahref = "http://charlesdagley.cz.cc/"title = "Portfolio">Dagley Designs</a>
</li>
<li>
<ahref = "link"title = "link">link</a>
</li>
<li>
<ahref = "link"title = "link">link</a>
</li>
<li>
<ahref = "link"title = "link">link</a>
</li>
</ul>
</menu>
</header>
<content>
<h2>This is our content area</h2>
<p>This is just a free html5 blank template</p>
</content>
<footer>
As found on html5snippets.com---Follow @charlesdagley
</footer>
</body>
</html>
DEMO | DOWNLOAD


















Recent Comments