forked from jonfriskics/HTMLCSS-LandingPage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
186 lines (176 loc) · 4.75 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Carved Rock Fitness</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<!-- NAVIGATION -->
<nav>
<div class="container">
<!-- BRANDING -->
<div>
<a href="#">
<img alt="Carved Rock Fitness" src="img/carved-rock-logo.png">
</a>
</div>
<!-- SEARCH -->
<div>
<div>
<form>
<input aria-label="Search" placeholder="What can we help you find?" type="search">
<button type="submit">SEARCH</button>
</form>
<ul>
<li><a href="#">Clothing</a></li>
<li><a href="#">Footwear</a></li>
<li><a href="#">Equipment</a></li>
<li><a href="#">Bags & Travel</a></li>
<li><a href="#">Trail Reviews</a></li>
</ul>
</div>
<!-- PROFILE -->
<div>
<div>
John Doe <a href="#">Log Out</a>
</div>
<div><img alt="John Doe" src="img/profile-pic.jpg"></div>
</div>
</div>
</div>
</nav>
<!-- HERO -->
<section>
<div class="container">
<h1>Get A Grip</h1>
<h2>20% Off</h2>
<p>Throughout The Season</p>
</div>
</section>
<!-- MAIN CONTAINER -->
<div class="container">
<!-- SALE BANNER -->
<section>
<div>
<img alt="Brown Boots" src="img/brown-boots.jpg">
<div>
<div>Couples retreat weekend</div>
<div>Save an extra 20%</div>
<div>when you buy 2 pairs of boots</div>
</div>
<img alt="Grey Boots" src="img/grey-boots.jpg">
</div>
</section>
<!-- CATEGORIES -->
<section>
<div>
<a href="#">
<img alt="Splash Chic" src="img/category-1.jpg" />
<div>
<h3>Splash Chic</h3>
<div>Women's Wet Gear</div>
</div>
</a>
</div>
<div>
<a href="#">
<img alt="Kid Klimbers" src="img/category-2.jpg" />
<div>
<h3>Kid Klimbers</h3>
<div>Children's Gear</div>
</div>
</a>
</div>
<div>
<a href="#">
<img alt="Pack It In" src="img/category-3.jpg" />
<div>
<h3>Pack It In</h3>
<div>Camping Gear</div>
</div>
</a>
</div>
<div>
<a href="#">
<img alt="Nature's AC" src="img/category-4.jpg" />
<div>
<h3>Nature's AC</h3>
<div>Men's Shorts</div>
</div>
</a>
</div>
</section>
<!-- FULL BANNER -->
<section>
<div></div>
<div>
<h4>Trail Review</h4>
<div>Asphalt</div>
<div>National Park</div>
<a href="#">See Review</a>
</div>
</section>
</div>
<!-- FOOTER -->
<footer>
<section class="container">
<div>
<div>Customer Support</div>
<ul>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Order Tracker</a></li>
<li><a href="#">Returns & Refunds</a></li>
<li><a href="#">Size Guide</a></li>
<li><a href="#">Store Locator</a></li>
<li><a href="#">Site Map</a></li>
</ul>
</div>
<div>
<div>Company Info</div>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Sustainability</a></li>
<li><a href="#">Affiliates</a></li>
<li><a href="#">Students</a></li>
<li><a href="#">Mobile Apps</a></li>
</ul>
</div>
<div>
<div>Privacy & Terms</div>
<ul>
<li><a href="#">Privacy & Security</a></li>
<li><a href="#">Statement</a></li>
<li><a href="#">Terms & Conditions</a></li>
</ul>
</div>
<div>
<div>Follow Us</div>
<ul>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
<li><a href="#"></a></li>
</ul>
<div>
<div>Email Updates</div>
<div>Exclusive sales, special offers, and more.</div>
<input type="text" placeholder="Enter email address" />
<button>Sign up</button>
</div>
</div>
</section>
<!-- PS DEMO -->
<section>
<div>
<img src="img/pluralsight-white.png" />
<div>This site is created for demonstrative purposes only and does not offer any real products or services.</div>
</div>
</section>
<div>©Pluralsight 2018</div>
</footer>
</body>
</html>