Loading...
August 29, 2011#

HTML5 Skeleton Template

These are the HTML5 skeletons I start out with on every new web design project. Please note: this page will be modified as my development requirements change. Enjoy!

Plain and Simple

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
   <head>
      <meta charset="utf-8">
      <meta http-equiv="x-ua-compatible" content="ie=edge">
      <meta name="description" content="">
      <title></title>
      <base href="/">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <link rel="stylesheet" href="css/styles.css">
      <script src="js/jquery.js" type="text/javascript" charset="utf-8" async defer></script>
      <script src="js/script.js" type="text/javascript" charset="utf-8" async defer></script>
   </head>
   <body>
      Hello World!
   </body>
</html>

Leave a Comment