-
Notifications
You must be signed in to change notification settings - Fork 0
/
featured.html
144 lines (102 loc) · 3.9 KB
/
featured.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
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SIXTEEN CLOTHING</title>
<link rel="shortcut icon" href="logo.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<!-- font awesome connect -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
</head>
<body>
<header class="header">
<div class="menu_wrapper">
<div class="logo_name">
<a href="index.html">
<h2 class="logo_h2_1">SIXTEEN</h2>
<h2 class="logo_h2_2">CLOTHING</h2>
</a>
</div>
<div class="menu">
<input id="click" name="click" type="checkbox">
<label for="click">
<i id="menu_bar" class="fas fa-bars"></i>
</label>
<ul id="ul" class="menu_ul">
<li><a href="index.html">Home</a></li>
<li class="active_menu" ><a href="our_products.html">Our Products</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</div>
</header>
<section class="picture_sec bg_our">
<div class="slide_wrapper">
<h3 class="h3_slide">NEW ARRIVALS</h3>
<h2 class="h2_slide h2_bg">SIXTEEN PRODUCTS</h2>
</div>
</section>
<section class="products">
<div class="container">
<div class="product_wrapper">
<div class="head_wrapper">
<ul>
<li><a href="our_products.html">ALL PRODUCTS</a></li>
<li><a class="h_wrp_a_active" href="featured.html">FEATURED</a></li>
<li><a href="flash.html">FLASH DEALS</a></li>
<li><a href="last_m.html">LAST MINUTE</a></li>
</ul>
</div>
<div class="showing_products">
<div class="product_box">
<img src="product_01.jpg" alt="">
<div class="description">
<h4>Tittle goes here</h4>
<h6>$25.75</h6>
<p>Lorem ipsume dolor sit amet, adipisicing elite. Itaque, corporis nulla aspernatur.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span>Reviews (48)</span>
</div>
</div>
<div class="product_box product_box_6">
<img src="product_06.jpg" alt="">
<div class="description">
<h4>Tittle goes here</h4>
<h6>$22.50</h6>
<p>Lorem ipsume dolor sit amet, adipisicing elite. Itaque, corporis nulla aspernatur.</p>
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<span>Reviews (19)</span>
</div>
</div>
</div>
<div class="page_num_our">
<span class="pg_1"><a href="#">1</a></span>
<span class="pg_2"><a href="#">2</a></span>
<span class="pg_3"><a href="#">3</a></span>
<span class="pg_4"><a href="#">4</a></span>
<span class="pg_5"><a href="#"><i class="fas fa-angle-double-right"></i></a></span>
</div>
</div>
</div>
</section>
<footer class="footer">
<h5>COPYRIGHT © 2021 SIXTEEN CLOTHING CO., LTD. - DESIGN: <a href="easyinfo360.blogspot.com">Jawad Jamil</a></h5>
</footer>
</body>
</html>