-
Notifications
You must be signed in to change notification settings - Fork 0
/
shop.html
111 lines (98 loc) · 4.14 KB
/
shop.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
<!DOCTYPE html>
<html>
<meta name ="viewport" content="with=device-width, initial-scale=1.0">
<head>
<title>Coffee Shop</title>
<link rel = "icon" href = "https://image.similarpng.com/very-thumbnail/2020/11/Coffee-logo-design-on-transparent-background-PNG.png"
type = "image/x-icon">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/37a5fd06c7.js" crossorigin="anonymous"></script>
</head>
<body>
<section class="sub-header">
<nav>
<a href="index.html"><img src="images/logo.png"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onClick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="coffee.html">COFFEE</a></li>
<li><a href="shop.html">SHOP</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" onClick="showMenu()"></i>
</nav>
<h1>Available Shipment Products</h1>
</section>
<!--- shop content-->
<div class="shop">
<div class="items">
<div class="shop-col">
<a target="_blank" href="images/bottles.jpg">
<img src="images/bottles.jpg">
</a>
<div class="desc">Coffee Bottles<br>Rp100.000</div>
</div>
<div class="shop-col">
<a target="_blank" href="images/coffebag.jpg">
<img src="images/coffebag.jpg">
</a>
<div class="desc">Coffee Beans<br>Rp50.000</div>
</div>
<div class="shop-col">
<a target="_blank" href="images/coldbrew.jpg">
<img src="images/coldbrew.jpg">
</a>
<div class="desc">Cold Brew<br>Rp30.000</div>
</div>
<div class="shop-col">
<a target="_blank" href="images/icedcoffe.jpg">
<img src="images/icedcoffe.jpg">
</a>
<div class="desc">Iced Coffee<br>Rp30.000</div>
</div>
<div class="shop-col">
<a target="_blank" href="images/shirt.jpg">
<img src="images/shirt.jpg">
</a>
<div class="desc">T-shirt<br>Rp120.000</div>
</div>
<div class="shop-col">
<a target="_blank" href="images/mug.jpg">
<img src="images/mug.jpg">
</a>
<div class="desc">Mug<br>Rp60.000</div>
</div>
</div>
<div class="order-btn">
<a href="https://www.tokopedia.com/">Order Now</a>
</div>
</div>
<!-- Footer -->
<section class="footer">
<h4>About Us</h4>
<p>Lorem ipsum dolor, sit aNmet consectetur adipisicing elit. Fugit sequi magni libero temporibus dolorum nam vitae placeat qui? <br>Et eum eaque magnam voluptas. Illum quo quis temporibus reiciendis beatae id?</p>
<div class="icons">
<a href="#" class="icon"><i class="fa-brands fa-facebook"></i></a>
<a href="#" class="icon"><i class="fa-brands fa-instagram"></i></a>
<a href="#" class="icon"><i class="fa-brands fa-twitter"></i></a>
</div>
<p>Made by <i class="fa fa-instagram"></i> @dtrianza</p>
</section>
<!-- Javascript for Toogle Menu-->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0";
}
function hideMenu(){
navLinks.style.right = "-200px";
}
</script>
</body>
</html>