forked from dhg/Skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (116 loc) · 3.83 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Your page title here :)</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/exoskeleton.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row header-box">
<div class="twelve-columns">
<h1>Header</h1>
<p>
Text
</p>
</div>
</div>
<div class="side-scroll">
<div class="side-scroll-internal">
<h6>Header</h6>
<h5>Some</h5>
<h4>text</h4>
<h6>inside</h6>
<h6>here</h6>
</div>
<div class="side-scroll-internal">
<h6>Header</h6>
<h5>Some</h5>
<h4>text</h4>
<h6>inside</h6>
<h6>here</h6>
</div>
<div class="side-scroll-internal">
<h6>Header</h6>
<h5>Some</h5>
<h4>text</h4>
<h6>inside</h6>
<h6>here</h6>
</div>
<div class="side-scroll-internal">
<h6>Header</h6>
<h5>Some</h5>
<h4>text</h4>
<h6>inside</h6>
<h6>here</h6>
</div>
<div class="side-scroll-internal">
<h6>Header</h6>
<h5>Some</h5>
<h4>text</h4>
<h6>inside</h6>
<h6>here</h6>
</div>
</div>
<div class="row">
<div class="one-half-1pct-margin column box hello">
<h4>Hello!</h4>
<p>Some text <span>that's</span> kinda <span>important</span></p>
</div>
<div class="one-half-1pct-margin column box bg bg-vancouver">
<h4><span>
Text
</span></h4>
</div>
</div>
<div class="row">
<div class="one-half-1pct-margin column box bg-teal">
<h6>
Heading
</h6>
<p>
Text
</p>
</div>
<div class="one-half-1pct-margin column box bg-green">
<h6>
Heading
</h6>
<p>
Text
</p>
</div>
</div>
<div class="row">
<div class="twelve columns love">
<p>
Made with
<svg class="heart" viewBox="0 0 32 29.6">
<path d="M23.6,0c-3.4,0-6.3,2.7-7.6,5.6C14.7,2.7,11.8,0,8.4,0C3.8,0,0,3.8,0,8.4c0,9.4,9.5,11.9,16,21.2
c6.1-9.3,16-12.1,16-21.2C32,3.8,28.2,0,23.6,0z"/>
</svg>
</p>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>