-
Notifications
You must be signed in to change notification settings - Fork 0
/
elements.html
executable file
·99 lines (92 loc) · 2.9 KB
/
elements.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
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<!--[if IE 8]>
<html class="ie ie8" lang="en">
<![endif]-->
<!--[if IE 9]>
<html class="ie ie9" lang="en">
<![endif]-->
<!--[if gt IE 9]>
<html lang="en">
<![endif]-->
<!--[if !IE]><!-->
<html lang="en">
<!--<![endif]-->
<head>
<title>Global cascade - sucCSS</title>
<!-- START : Metadata -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="viewport" content="width=device-width;initial-scale=1.0;maximum-scale=1.0;">
<!-- END : Metadata -->
<!-- START : sucCSS CSS -->
<link rel="stylesheet" href="css/main.css">
<!-- END : sucCSS CSS -->
</head>
<body>
<div class="document">
<div class="page">
<div class="tabula-rasa">
<div class="grid-primary">
<div class="pad">
<!-- START : Headers -->
<h1>Header 1</h1>
<h2>Header 2</h2>
<h3>Header 3</h3>
<h4>Header 4</h4>
<h5>Header 5</h5>
<h6>Header 6</h6>
<!-- END : Headers -->
<!-- START : Text elements -->
<p><strong>Strong</strong>, <em>Emphasis</em>, <b>Bold</b>, <i>Italics</i></p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<!-- END : Text elements -->
<!-- START : Preformatted and code -->
<pre>This is an example of preformatted text.</pre>
<code>function() {
// This is an example of code
}
</code>
<!-- END : Preformatted and code -->
<!-- START : Lists -->
<ul>
<li>Unordered list</li>
<li><a href="#">Link in a list</a></li>
<li>Lorem ipsum dolor</li>
</ul>
<ol>
<li>Ordered list</li>
<li><a href="#">Link in a list</a></li>
<li>Lorem ipsum dolor</li>
</ol>
<!-- END : Lists -->
<!-- START : Tables -->
<table>
<caption><span>Table caption</span></caption>
<thead>
<tr>
<th id="header-0" scope="col">Table header</th>
<th id="header-1" scope="col">Table header</th>
<th id="header-2" scope="col">Table header</th>
</tr>
</thead>
<tbody>
<tr>
<td headers="header-0">Table cell</td>
<td headers="header-1">Table cell</td>
<td headers="header-2">Table cell</td>
</tr>
<tr>
<td headers="header-0">Table cell</td>
<td headers="header-1">Table cell</td>
<td headers="header-2">Table cell</td>
</tr>
</tbody>
</table>
<!-- END : Tables -->
</div>
</div>
</div>
</div>
</div>
</body>
</html>