This repository has been archived by the owner on Apr 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (86 loc) · 1.58 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
<!DOCTYPE HTML>
<html>
<head>
<title>
Frosty Website
</title>
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link rel='stylesheet' href='./css/reset.css' />
<link rel='stylesheet' href='./css/style.css' />
</head>
<body>
<header>
<ul class='navbar'>
<li>
<a href='./'><img src='./img/snowflake-310071.svg' class='logo' /></a>
</li>
<ul class='nav-section'>
<li>
Navbar 1
</li>
<li>
Navbar 2
</li>
<li>
Navbar 3
</li>
</ul>
</ul>
</header>
<section class='view-0'>
<div class='overlay-text'>
<h1>
Minty Fresh
</h1>
<p>
A Website of Glassy Ice, Frosted Wind, and Plumes of Snow
</p>
</div>
</section>
<section class='view-1'>
<div class='overlay-text'>
<h2>
Glassy Ice
</h2>
<p>
A clean and cool slab of ice -- fresh shines mirror your emotions.
</p>
</div>
</section>
<section class='view-2'>
<div class='overlay-text'>
<h2>
Frosted Wind
</h2>
<p>
A minty breeze sparkles with white glitter. It numbs your worries.
</p>
</div>
</section>
<section class='view-3'>
<div class='overlay-text'>
<h2>
Plumes of Snow
</h2>
<p>
A fresh blanket keeps the earth chilled on a cold winter night.
</p>
</div>
</section>
<footer>
<ul class='navbar'>
<ul class='nav-section'>
<li>
Navbar 1
</li>
<li>
Navbar 2
</li>
<li>
Navbar 3
</li>
</ul>
</ul>
</footer>
</body>
</html>