HTML/CSS Stylesheet Tutorial
 by AkenaDesign
© 2011 Akena Design. All Rights Reserved.
01.
02.
03.
04.
05.
06.
07.
08.
09.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
<!DOCTYPE html>
<html>
<head>
  <!-- Site Design and Progamming by Author -->
  <meta charset=utf-8 />
  <title>Website Title goes here</title>
  <!--[if IE]>
  <script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  <![endif]-->
  
  <!-- Favicon -->
  <link rel="shortcut icon" href="favicon.ico">
  
  <!-- Meta -->
  <meta name="KEYWORDS" content="keyword1, keyword phrase, keyword2">
  <meta name="DESCRIPTION" content="Site Description goes here">
  <meta name="ROBOTS" CONTENT="index, follow">
  <meta name="REVISIT-AFTER" CONTENT="1 Week">
  
  <!-- Stylesheets -->
  <link rel="stylesheet" href="includes/style.css">
  <!-- http://jquery.com/ -->
</head>

<body>
  <p>Hello World</p>
</body>
</html>