-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
82 lines (53 loc) · 2.65 KB
/
product.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Product</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="/fontawesome-free-5.15.1-web/css/all.css">
</head>
<body>
<header class="header">
<div class="links" id="LINKS">
<i class="fas fa-times"></i>
<ul>
<li><a href="/index.html">home</a> </li>
<li><a href="/skill.html">skill</a> </li>
<li><a href="/about.html">about</a> </li>
<li><a href="/product.html">products</a> </li>
</ul>
</div>
<div class="title-div"> <i class="fas fa-bars"></i>
<h2 class="over_one">over one hundred flavors of</h2>
<h1>specially <br>crafted tea</h1> <a href="#">Explore</a>
</div>
</header>
<section class="products-section">
<div class="product_content">
<div class="div1 info one">
<h3 class="Text Check_out"> Check out</h3>
<h2 class="our_product">Our Products</h2>
<p class="Product_para Text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Quasi quidem, repellat praesentium esse ducimus odit alias nulla laborum doloremque voluptatum, a cum magnam iure accusamus. </p>
<span> <a href="" class="Inventory">inventory</a> </span>
</div>
<div class="div1 two">
<img class="p_image" src="/images/product-1.jpeg" alt="">
<h4 class="name Text">Ginger Peach Tea</h4>
<h4 class="Text price"> $6.96</h4>
</div>
<div class="div1 three">
<img class="p_image" src="/images/product-2.jpeg" alt="">
<h4 class="name Text"> Fruit Sangria</h4>
<h4 class="Text price">$6.96</h4>
</div>
<div class="div1 four">
<img class="p_image" src="images/product-3.jpeg" alt="">
<h4 class="name Text"> White tea</h4>
<h4 class="Text price">$6.96</h4>
</div>
</div>
</section>
<script src="./css/javasc.js"></script>
</body>
</html>