-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
87 lines (70 loc) · 2.54 KB
/
index.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE HTML>
<html lang="en">
<!--
ENSO - A minimal HTML5 boilerplate
www.spiegelma.de
-->
<head>
<!-- Tell that browser the character encoding type-->
<meta charset="utf-8">
<!-- Set IE's rendering engine so your site looks good on IE (lower versions) -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Ensō — A minimal HTML5 boilerplate</title>
<!-- Order that search engine to index page and follow links on it -->
<meta name="robots" content="index, follow">
<!-- Scaling behavior for multi-touch devices -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Description and keywords so people can find you -->
<meta name="description" content="short description here">
<meta name="keywords" content="keywords here">
<!-- Take some credit for once -->
<meta name="author" content="your name here">
<!-- Favicon, the icon next to the URL or inside browser tab -->
<link rel="icon" type="image/png" href="img/favicon.png">
<!-- Make that site of yours sexy -->
<link rel="stylesheet" href="css/style.css">
<!-- Eases the pain in building HTML5 and CSS3 sites -->
<script src="js/modernizr.js"></script>
</head>
<body>
<div id="main-wrapper">
<section>
<article>
<h3>
Ensō <span id="heart">♥</span>
<span class="mq deto">desktop layouts</span>
<span class="mq tapo">tablet ( portrait ) layout</span>
<span class="mq mola">mobile ( landscape ) layout</span>
<span class="mq mopo">mobile ( portrait ) layout</span>
<br>
—
</h3>
</article>
</section>
<section>
<article>
<h1>Header <h1></h1>
<h2>Header <h2></h2>
<h3>Header <h3></h3>
<p>
Ensō is a minimal HTML5 boilerplate for mediocre ~ advanced front-end developers. It is mostly meant for rapid prototyping and small projects, but has the structure to expand and support larger projects.
</p>
<ul>
<li>CSS reset</li>
<li>Preset media queries</li>
<li>Simply awesome</li>
</ul>
<a href="#">link</a>
</article>
</section>
</div>
<!--
Site loads faster with scripts at the bottom
Load latest jQuery if online else fallback to offline version
-->
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.8.3.min.js"><\/script>')</script>
<!-- Your amazing custom scripts -->
<script src="js/scripts.js"></script>
</body>
</html>