-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
150 lines (141 loc) · 4.68 KB
/
products.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
145
146
147
148
149
150
<!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>Tea Station || Products</title>
<!-- fonds -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<!-- navbar -->
<!-- nav button -->
<!-- nav button -->
<span class="nav-btn" id="nav-btn">
<i class="fas fa-bars"></i>
</span>
<nav class="navbar" id="navbar">
<div class="navbar-header">
<span class="nav-close" id="nav-close">
<i class="fas fa-times"></i>
</span>
</div>
<ul class="nav-items">
<li><a href="index.html" class="nav-link">home</a></li>
<li><a href="skills.html" class="nav-link">skills</a></li>
<li><a href="about.html" class="nav-link">about</a></li>
<li><a href="products.html" class="nav-link">products</a></li>
</ul>
</nav>
<!-- header -->
<header class="header">
<div class="banner">
<h2>Over one houndred flavours of</h2>
<h1>
specially <br />
crafted tea
</h1>
<a href="skills.html" class="btn banner-btn">explore</a>
</div>
</header>
<div class="content-divider"></div>
<!-- end of header -->
<!--products -->
<section class="products">
<div class="section-center clearfix">
<!-- product info -->
<article class="product-info">
<div class="section-title">
<h3>check out</h3>
<h2>our products</h2>
<p class="product-text">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Tempore
animi repellendus corporis earum nesciunt quos.
</p>
<p class="product-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ullam
consequatur minima soluta sed earum nam quidem repudiandae quod
consectetur architecto blanditiis eos dicta odio nisi at, eaque
est? Atque, distinctio.
</p>
</div>
<a href="product.html" class="btn">Inventory</a>
</article>
<!-- product info inventory-->
<article class="product-inventory clearfix">
<!-- single product -->
<div class="product">
<img
src="./images/pexels-hasan-albari-1493079.jpg"
alt="none"
class="product-img"
/>
<h4 class="product-title">ginger peach tea</h4>
<h4 class="product-price">$6.99</h4>
</div>
<!--end of single product -->
<!-- single product -->
<div class="product">
<img
src="./images/pexels-koko-rahmadie-227908.jpg"
alt="none"
class="product-img"
/>
<h4 class="product-title">red tea</h4>
<h4 class="product-price">$4.99</h4>
</div>
<!--end of single product -->
<!-- single product -->
<div class="product">
<img
src="images/pexels-julia-sakelli-905485.jpg"
alt="none"
class="product-img"
/>
<h4 class="product-title">hop tea</h4>
<h4 class="product-price">$16.99</h4>
</div>
<!--end of single product -->
</article>
</div>
</section>
<!-- end of products -->
<!-- Footer -->
<footer class="footer">
<div class="section-center">
<div class="social-icons">
<!-- social icon -->
<a href="#" class="social-icon">
<i class="fab fa-facebook"></i>
</a>
<!-- end of social icon -->
<!-- social icon -->
<a href="#" class="social-icon">
<i class="fab fa-twitter"></i>
</a>
<!-- end of social icon -->
<!-- social icon -->
<a href="#" class="social-icon">
<i class="fab fa-instagram"></i>
</a>
<!-- end of social icon -->
</div>
<h4 class="footer-text">
©<span id="date"></span>
<span class="company">tea station</span>
all rights reserved
</h4>
</div>
</footer>
<!-- End of footer -->
<script src="app.js"></script>
</body>
</html>