-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
149 lines (116 loc) · 4.9 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Parallax Techniques</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- Styles -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/custom-styles.css">
</head>
<body>
<!-- Header Parallax -->
<header class="bird-box">
<div class="back-bird"></div>
<div class="logo"></div>
<div class="fore-bird"></div>
</header>
<section class="content">
<article>
<h1>Clothing Store</h1>
<hr>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
</p>
<hr>
<!-- Landing Elements & Zooming Thumbnails -->
<div class="clothes-pics">
<div class="row">
<figure class="columns four">
<img src="images/model1.jpg" alt="Model One">
<figcaption>
BlackBird Sweater - <strong>$135</strong>
</figcaption>
</figure>
<figure class="columns four">
<img src="images/model2.jpg" alt="Model Two">
<figcaption>
BlackBird Sweater - <strong>$135</strong>
</figcaption>
</figure>
<figure class="columns four">
<img src="images/model3.jpg" alt="Model Three">
<figcaption>
BlackBird Sweater - <strong>$135</strong>
</figcaption>
</figure>
</div>
<div class="row">
<figure class="columns four">
<img src="images/model1.jpg" alt="Model One">
<figcaption>
BlackBird Sweater - <strong>$135</strong>
</figcaption>
</figure>
<figure class="columns four">
<img src="images/model2.jpg" alt="Model Two">
<figcaption>
BlackBird Sweater - <strong>$135</strong>
</figcaption>
</figure>
<figure class="columns four">
<img src="images/model3.jpg" alt="Model Three">
<figcaption>
BlackBird Sweater - <strong>$135</strong>
</figcaption>
</figure>
</div>
<div class="row">
<figure class="columns four">
<img src="images/model1.jpg" alt="Model One">
<figcaption>
BlackBird Sweater - <strong>$135</strong>
</figcaption>
</figure>
<figure class="columns four">
<img src="images/model2.jpg" alt="Model Two">
<figcaption>
BlackBird Sweater - <strong>$135</strong>
</figcaption>
</figure>
<figure class="columns four">
<img src="images/model3.jpg" alt="Model Three">
<figcaption>
BlackBird Sweater - <strong>$135</strong>
</figcaption>
</figure>
</div>
</div>
<hr>
<!-- The Periscope -->
<div class="large-window">
<div class="large-window-tint">
<div class="large-window-text">
<div class="large-window-text-heading">Fall Suites</div>
<div>
<span class="large-window-text-before-price">from</span>
<strong class="large-window-text-price">$99</strong>
</div>
<div class="large-window-button">
Buy Now!
</div>
</div>
</div>
</div>
</article>
</section>
<!-- For scrolling -->
<div style="height: 2000px"></div>
<!-- Scripts -->
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="js/functions.js"></script>
</body>
</html>