-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.html
72 lines (65 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="imges/Logo artists/loco V3.jpg">
<title>Tonpor Portfolio io</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- NAVIGATION NAVBAR -->
<header>
<div class="container-hd">
<a href="index.html" class="logo-header">
<img src="imges/Logo_artists/loco V3-P.png" alt="Artistscoffee"></a>
<ul class="nav-header">
<li><a href="index.html">Home</a></li>
<li><a href="product.html">Product</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div id="input-wrapper">
<input class="Search-Nav" id="input" type="text" placeholder="Search" onkeyup="search()">
<img class="search-icon" src="imges/search-svgrepo-com.svg" alt="Search">
</div>
<div class="shopping">
<img src="imges/shopping-cart-svgrepo-com.svg" alt="shopping">
<span class="quantity">0</span>
</div>
</div>
</header>
<!-- ส่วน Show Products -->
<br>
<div class="wrapper Content-scenery">
<h1 class="scenery-title space-padding">Coffee Products</h1>
<p class="scenery-para">Elevate your coffee journey with our premium coffee products and awaken your senses to a world of unparalleled flavor and aroma. Whether you're a seasoned coffee connoisseur or just beginning your exploration, our diverse range ensures that there's something for everyone to enjoy. Experience pure bliss in every sip with Artistscoffee.</p>
</div>
<br>
<div class="list wrapper" id="product-list"></div>
<main>
<div class="card">
<h1>Shopping Cart</h1>
<ul class="listCard"></ul>
<div class="checkout">
<a href="checkout.html" class="total">0</a>
<div class="closeShopping">Close</div>
</div>
</div>
</main>
<footer>
<div class="footer-xy">
<a href="/" class="footer-a">
<img src="imges/Logo_artists/loco V3-P.png" alt="Artistscoffee" loading="lazy">
</a>
<span class="">© 2024 Company, Inc</span>
</div>
<ul class="footer-social">
<li class=""><a class="" href="#"><img src="imges/facebook-1-svgrepo-com.svg" width="30" height="30" alt="" loading="lazy">
<li class=""><a class="" href="#"><img src="imges/instagram-svgrepo-com.svg" width="30" height="30" alt="" loading="lazy">
<li class=""><a class="" href="#"><img src="imges/line-svgrepo-com.svg" width="30" height="30" alt="" loading="lazy">
</ul>
</footer>
<script src="app.js"></script>
</body>
</html>