-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (127 loc) · 4.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!--For SEO optimization-->
<meta
name="description"
content="SnowHero is a store specialized in winter clothing and winter sports clothing"
/>
<!--SEO optimization, web crawlers-->
<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
href="https://fonts.googleapis.com/css?family=Karla:400,700|Open+Sans:300,600|Poppins:300,400,600&display=swap"
rel="stylesheet"
/>
<title>SnowHero</title>
</head>
<body>
<section class="hero-section">
<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="hero-text">
<h1>Forget the limits</h1>
<p class="hero-p">
Erase the word Limit from your personal dictionary. In SnowHero you
can find all the equipment you need for your next adventure.
</p>
<a href="#our-products" class="explore-btn">Explore our products</a>
</div>
</section>
<section class="our-service">
<div class="image-gallery">
<div class="image-card"></div>
<div class="image-card"></div>
<div class="image-card"></div>
</div>
<div class="our-service-container container">
<div class="our-service-card">
<img src="./images/delivery.svg" alt="A car" />
<h3>Easy delivery</h3>
<p class="our-service-p">
You don't have to wait a long time to enjoy whatever you order.
</p>
</div>
<div class="our-service-card">
<img src="./images/clothing.svg" alt="A jacket" />
<h3>Quality</h3>
<p class="our-service-p">
High quality material is used during the fabrication proccess.
</p>
</div>
<div class="our-service-card">
<img src="./images/certificate.svg" alt="A certificate" />
<h3>Warranty</h3>
<p class="our-service-p">
If the product is not what you expected you can get the money back.
</p>
</div>
</div>
</section>
<section id="our-products" class="container">
<h2>Our products</h2>
<h2>Jackets</h2>
<div class="our-products-container">
<a href="#"
><div class="product-card">
<img src="./images/jackets/greed_jacket.png" alt="Greed Jacket" />
<h4 class="name">Greed Jacket</h4>
<h5 class="price">From $170</h5>
</div></a
>
<a href="#">
<div class="product-card">
<img src="./images/jackets/gala.png" alt="Gala" />
<h4 class="name">Gala</h4>
<h5 class="price">$120</h5>
</div>
</a>
<a href="#"
><div class="product-card">
<img src="./images/jackets/frontier.png" alt="Frontier" />
<h4 class="name">Frontier</h4>
<h5 class="price">$177.96</h5>
</div></a
>
<a href="#"
><div class="product-card">
<img src="./images/jackets/la.png" alt="LA" />
<h4 class="name">LA</h4>
<h5 class="price">$140.96</h5>
</div></a
>
<a href="#"
><div class="product-card">
<img src="./images/jackets/haze_varsity.png" alt="Haze Varsity" />
<h4 class="name">Haze Varsity</h4>
<h5 class="price">$130.96</h5>
</div></a
>
</div>
<a href="./all-jackets.html" class="explore-btn view-all-btn">View all</a>
</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>
</body>
</html>