Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

DWS Basic HTML Template

<!DOCTYPE HTML>
<html lang="en">

<head>
  <meta name="Author" content="DWS">
  <meta charset="utf-8">
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  <title>Basic HTML Template</title>
  <link rel="stylesheet" type="text/css" href="style.css">
  <style>
      .header-style {
        color: blue;
      }
  </style>
  <script src="js/scripts.js"></script>
</head>

<body>

	<header>
		<nav>
			<ul>
				<li>Your menu</li>
			</ul>
		</nav>
	</header>
	
	<section>
	
		<article>
			<header>
				<h2>Article title</h2>
				<p>Posted on <time datetime="2009-09-04T16:31:24+02:00">September 4th 2009</time> by <a href="#">Writer</a> - <a href="#comments">6 comments</a></p>
			</header>
			<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
		</article>
		
		<article>
			<header>
				<h2>Article title</h2>
				<p>Posted on <time datetime="2009-09-04T16:31:24+02:00">September 4th 2009</time> by <a href="#">Writer</a> - <a href="#comments">6 comments</a></p>
			</header>
			<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
		</article>
		
	</section>

	<aside>
		<h2>About section</h2>
		<p>Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>
	</aside>

	<footer>
		<p>Copyright 2009 Your name</p>
	</footer>

</body>

</html>
Source by css-tricks.com #
 
PREVIOUS NEXT
Tagged: #DWS #Basic #HTML #Template
ADD COMMENT
Topic
Name
8+3 =