Abizern (owner)

Revisions

gist: 220958 Download_button fork
public
Description:
Basic layout for HTML5
Public Clone URL: git://gist.github.com/220958.git
Embed All Files: show embed
BasicHTML5.html #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<html dir="ltr" lang="en">
 
<head>
  <meta http-equiv="Content-type" content="text/html;charset=utf-8" />
  <title></title>
  
  <meta name="description" content="" />
  <meta name="keywords" content="" />
  <meta name="robots" content="" />
  
  <link rel="shortcut icon" href="images/favicon.ico">
  <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.0.0/build/cssreset/reset-min.css">
  <link rel="stylesheet" type="text/css" href="" media="screen" />
</head>
  
<body>
  <header>
  
  </header>
  
  <nav>
 
  </nav>
 
  <article>
 
  </article>
 
  <aside>
 
  </aside>
 
  <footer>
 
  </footer>
 
</body>
 
</html>
style.css #
1
2
3
4
5
/* Make sure that HTML5 elements are treated as block level */
header, nav, article, section, aside, footer {
  display: block;
}