-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall-jackets.html
51 lines (49 loc) · 1.48 KB
/
all-jackets.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index,follow" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="icon" href="./favicon.ico" />
<link rel="stylesheet" href="./css/styles.css" />
<link rel="stylesheet" href="./css/jackets.css" />
<link
href="https://fonts.googleapis.com/css?family=Karla:400,700|Open+Sans:300,600|Poppins:300,400,600&display=swap"
rel="stylesheet"
/>
<title>Jackets - SnowHero</title>
</head>
<body>
<section class="banner">
<header>
<a href="./" class="brand"> Snow<span>Hero</span> </a>
<div class="navigation">
<ul>
<li><a href="#">Blog</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">Men</a></li>
<li><a href="#">About us</a></li>
</ul>
</div>
</header>
<div class="title">
<h1>Jackets</h1>
</div>
</section>
<section id="our-products" class="container">
<div class="our-products-container"></div>
</section>
<footer>
<div class="navigation">
<ul>
<li><a href="#">Blog</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">Men</a></li>
<li><a href="#">About us</a></li>
</ul>
</div>
</footer>
<script src="./addJackets.js"></script>
</body>
</html>