-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (99 loc) · 4.31 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<main>
<section class="quality products">
<div class="container">
<div class="row">
<div class="col-4">
<div class="quality products-box pink">
<h2 class="quality-title">Best Quality Products Pen Foods</h2>
<p class="section-desk">Dogs leave paw prints forever on our hearts. A dog shade the.</p>
<a href="#" class="btn">See Details</a>
</div>
</div>
<div class="col-4">
<div class="quality products-box green">
<h2 class="quality-title">Best Quality Products Pen Foods</h2>
<p class="section-desk">Dogs leave paw prints forever on our hearts. A dog shade the.</p>
<a href="#" class="btn">See Details</a>
</div>
</div>
<div class="col-4">
<div class="quality products-box yellow">
<h2 class="quality-title">Best Quality Products Pen Foods</h2>
<p class="section-desk">Dogs leave paw prints forever on our hearts. A dog shade the.</p>
<a href="#" class="btn">See Details</a>
</div>
</div>
</div>
</div>
</section>
<section class="popular">
<div class="container">
<h2 class="popular-title">Popular Products</h2>
<p class="popular-desk">A dog in heat needs more than shade The more people I meet the more <br>I like my
dog.Dogs leave paw prints forever on our hearts.</p>
<div class="row">
<div class="col-6">
<div class="box">
<div class="bracelet">
<img src="./images/Harness-Lead-Leash-MediumLarge-Blue%201.png" alt="">
</div>
<h4 class="popular-info">Mauris blandit aliquet</h4>
<a href="#" class="btn">View Details</a>
</div>
</div>
<div class="col-6">
<div class="box">
<div class="bracelet">
<img src="./images/Reflective-dog-collar-1_1200x1200%201.png" alt="">
</div>
<h4 class="popular-info">Mauris blandit aliquet</h4>
<a href="#" class="btn">View Details</a>
</div>
</div>
<div class="col-4">
<div class="box second">
<div class="cord">
<img src="./images/2075_SLT_FR__50984%201.png" alt="">
</div>
<h4 class="popular-info">Mauris blandit aliquet</h4>
<a href="#" class="btn">View Details</a>
</div>
</div>
<div class="col-4">
<div class="box second">
<div class="cord">
<img src="./images/81ud4pbkltL%201.png" alt="">
</div>
<h4 class="popular-info">Mauris blandit aliquet</h4>
<a href="#" class="btn">View Details</a>
</div>
</div>
<div class="col-4">
<div class="box second">
<div class="cord">
<img src="./images/Rectangle%2055.png" alt="">
</div>
<h4 class="popular-info">Mauris blandit aliquet</h4>
<a href="#" class="btn">View Details</a>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<a href="#" class="btn">View All Products</a>
</footer>
</main>
</body>
</html>