-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.html
131 lines (130 loc) · 4.18 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
<!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>Tea Station || Products</title>
<!-- font-awesome -->
<link
rel="stylesheet"
href="./fontawesome-free-5.12.1-web/css/all.min.css"
/>
<!-- custom css -->
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<!-- nav bar -->
<span class="nav-btn" id="nav-btn">
<i class="fas fa-bars"></i>
</span>
<nav class="navbar" id="navbar">
<div class="navbar-header" id="navbar-header">
<span class="nav-close" id="nav-close">
<i class="fas fa-times"></i>
</span>
</div>
<ul>
<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 us</a></li>
<li><a href="products.html" class="nav-link">products</a></li>
<li><a href="index.html#contact-1" class="nav-link">Contact Us</a></li>
</ul>
</nav>
<!-- end of nav bar -->
<!-- header -->
<header class="header product-bg">
<div class="banner">
<h2>over one hundred flavors of</h2>
<h1>
Specially <br />
Crafted Tea
</h1>
<a href="#products-1" class="btn banner-btn">explore</a>
</div>
</header>
<!-- end of header -->
<!-- Products Page -->
<section class="products" id="products-1">
<div class="section-center clearfix">
<!-- products info -->
<article class="products-info">
<div class="section-title">
<h3>check out</h3>
<h2>Our Products</h2>
</div>
<p class="products-text">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Dolores
consequatur molestiae quia minima. Reprehenderit minima quos
aspernatur aliquid sunt quia. Impedit soluta quos repudiandae.
</p>
<p class="products-text">
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Saepe
ipsum illum reprehenderit, qui repudiandae eum.
</p>
<div class="btn-more">
<a class="btn" href="#">inventory</a>
</div>
</article>
<!-- products inventory -->
<article class="products-inventory">
<div class="product">
<img
class="product-image"
src="images/product-1.jpeg"
alt="product_1"
/>
<h4 class="product-title">Ginger tea</h4>
<h4 class="product-price">$ 6.99</h4>
</div>
<div class="product">
<img
class="product-image"
src="images/product-2.jpeg"
alt="product_2"
/>
<h4 class="product-title">Green Peach tea</h4>
<h4 class="product-price">$ 8.99</h4>
</div>
<div class="product">
<img
class="product-image"
src="images/product-3.jpeg"
alt="product_1"
/>
<h4 class="product-title">Magic tea</h4>
<h4 class="product-price">$ 11.99</h4>
</div>
</article>
</div>
</section>
<!-- start of footer -->
<section class="footer">
<div class="social-icons">
<span>
<a href="https://www.facebook.com/" class="hover-effect">
<i class="fab fa-facebook fa-fw"></i
></a>
</span>
<span>
<a href="https://twitter.com/" class="hover-effect">
<i class="fab fa-twitter fa-fw"></i
></a>
</span>
<span>
<a href="https://www.instagram.com/" class="hover-effect">
<i class="fab fa-instagram fa-fw"></i
></a>
</span>
</div>
<div>
<h4 class="copyright-info">
©<span id="date">2021</span>
<span class="comp-name">tea station</span> all rights reserved
</h4>
</div>
</section>
<script src="app.js"></script>
</body>
</html>