-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (62 loc) · 2.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Great Shoes inc.</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="hero">
<div class="container spacing">
<h1 class="primary-title">Amazing Shoes at an amazing price</h1>
<p>Best quality shoes in the market for an indeed reasonable price!</p>
<a href="" class="btn">See what we have!</a>
</div>
</header>
<main>
<section class="featured">
<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="shoe-img" class="featured-img">
<p class="featured-details"><span class="price">$99</span>Nike Red Mesh</p>
</a>
<a href="" class="featured-item">
<img src="img/shoe-5.png" alt="shoe-img" class="featured-img" id="featured2">
<p class="featured-details"><span class="price">$99</span>Roadsters Navy Blue</p>
</a>
<a href="" class="featured-item">
<img src="img/shoe-6.png" alt="shoe-img" class="featured-img">
<p class="featured-details"><span class="price">$99</span>Air Mag Sneakers</p>
</a>
</div>
</div>
</section>
<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="shoe-img" class="product-img">
<h3 class="product-title">A Really Nice Shoe</h3>
<p class="product-desc">A maroonish colored shoe with great comfort.</p>
<a href="" class="btn">Buy Now</a>
</article>
<article class="product spacing shoe-white">
<img src="img/shoe-2.png" alt="shoe-img" class="product-img">
<h3 class="product-title">A Really Nice Shoe</h3>
<p class="product-desc">Designer shoe with high durablity and resistibility.</p>
<a href="" class="btn">Buy Now</a>
</article>
<article class="product spacing shoe-blue">
<img src="img/shoe-3.png" alt="shoe-img" class="product-img">
<h3 class="product-title">A Really Nice Shoe</h3>
<p class="product-desc">Plain white shoe which is easy to clean.</p>
<a href="" class="btn">Buy Now</a>
</article>
</div>
</section>
</main>
</body>
</html>