-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (73 loc) · 3.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Great Shoes inc.</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<header class="hero">
<div class="container spacing">
<h1 class="primary-title">Amazing shoes at an amazing price</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa quam perspiciatis facilis beatae laudantium quidem enim sit sequi! </p>
<a href="#" class="btn">see what we have</a>
</div>
</header>
<main>
<!--first sections-->
<section class="featured">
<!--container with 3cols each has link&img&p -->
<div class="container">
<h2 class="section-title">Featured products</h2>
<div class="split">
<a href="#" class="featured__item">
<img src="img/shoe-4.png" alt="" class="featured__img" >
<p class="featured__details"><span class="price">$99</span>shoe name</p>
</a>
<a href="#" class="featured__item">
<img src="img/shoe-5.png" alt="" class="featured__img">
<p class="featured__details"><span class="price">$99</span>shoe name</p>
</a>
<a href="#" class="featured__item">
<img src="img/shoe-6.png" alt="" class="featured__img">
<p class="featured__details"><span class="price">$99</span>shoe name</p>
</a>
</div>
</div>
</section>
<!--second sections-->
<section class="our-products">
<div class="container">
<h2 class="section-title">Our products</h2>
<article class="product shoe-red spacing">
<img src="img/shoe-1.png" alt="" class="product__image">
<div class="cont">
<h3 class="product__title">A really nice shoe</h3>
<p class="product__description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa quam perspiciatis facilis beatae laudantium quidem enim sit sequi!</p>
<a href="" class="btn">Buy now</a>
</div>
</article>
<article class="product shoe-white shoe-left spacing">
<img src="img/shoe-2.png" alt="" class="product__image">
<div class="cont">
<h3 class="product__title">A really nice shoe</h3>
<p class="product__description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa quam perspiciatis facilis beatae laudantium quidem enim sit sequi!</p>
<a href="" class="btn">Buy now</a>
</div>
</article>
<article class="product shoe-blue spacing">
<img src="img/shoe-3.png" alt="" class="product__image">
<div class="cont">
<h3 class="product__title">A really nice shoe</h3>
<p class="product__description">Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsa quam perspiciatis facilis beatae laudantium quidem enim sit sequi!</p>
<a href="" class="btn">Buy now</a>
</div>
</article>
</div>
</section>
</main>
</body>
</html>