-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (111 loc) · 4.53 KB
/
index.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 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>Donat Nyoy</title>
<!-- Icon -->
<!-- <a href="https://www.flaticon.com/free-icons/donut" title="donut icons">Donut icons created by Freepik - Flaticon</a> -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<!-- Css -->
<link rel="stylesheet" href="styles.css">
<!-- Box Icons -->
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<!-- Header -->
<header>
<!-- Navbar -->
<div class="nav container">
<img src="img/donut.png" alt="logo" style="width: 40px; margin-right: 5px;"><a href="#" class="logo">Donat Nyoy</a>
<!-- Keranjang icon -->
<i class='bx bx-cart' id="cart-icon"></i>
<!-- Keranjang -->
<div class="cart">
<h2 class="cart-title">Belanjaan anda</h2>
<!-- Containter -->
<div class="cart-content">
<!-- Main js masuk disini -->
<!-- Total -->
<div class="total">
<div class="total-title">Total</div>
<div class="total-price">Rp 0</div>
</div>
<!-- Buy button -->
<button type="button" class="btn-buy">Beli</button>
<!-- Close -->
<i class='bx bx-x-circle' id="close-cart"></i>
</div>
</div>
</div>
</header>
<!-- Shop -->
<section class="shop container">
<h2 class="section-title">Aneka Rasa Donat</h2>
<!-- Content -->
<div class="shop-content">
<!-- Box 1 -->
<div class="product-box">
<img src="img/donat.jpg" alt="" class="product-img">
<h2 class="product-title">Rainbow Donut</h2>
<span class="price">Rp 25000</span>
<i class='bx bx-cart add-cart'></i>
</div>
<!-- Box 2 -->
<div class="product-box">
<img src="img/donat3.jpg" alt="" class="product-img">
<h2 class="product-title">Donut Premium</h2>
<span class="price">Rp 35000</span>
<i class='bx bx-cart add-cart'></i>
</div>
<!-- Box 3 -->
<div class="product-box">
<img src="img/donat4.jpg" alt="" class="product-img">
<h2 class="product-title">Black Chocho Donut</h2>
<span class="price">Rp 100000</span>
<i class='bx bx-cart add-cart'></i>
</div>
<!-- Box 4 -->
<div class="product-box">
<img src="img/donat5.jpg" alt="" class="product-img">
<h2 class="product-title">Colorfull Messes Donut</h2>
<span class="price">Rp 25000</span>
<i class='bx bx-cart add-cart'></i>
</div>
<!-- Box 5 -->
<div class="product-box">
<img src="img/donat6.jpg" alt="" class="product-img">
<h2 class="product-title">Sweet Donut</h2>
<span class="price">Rp 30000</span>
<i class='bx bx-cart add-cart'></i>
</div>
<!-- Box 6 -->
<div class="product-box">
<img src="img/donat8.jpg" alt="" class="product-img">
<h2 class="product-title">Stawberry Donut</h2>
<span class="price">Rp 10000</span>
<i class='bx bx-cart add-cart'></i>
</div>
<!-- Box 7 -->
<div class="product-box">
<img src="img/donatx.jpg" alt="" class="product-img">
<h2 class="product-title">Peanut Donut</h2>
<span class="price">Rp 750000</span>
<i class='bx bx-cart add-cart'></i>
</div>
<!-- Box 8 -->
<div class="product-box">
<img src="img/donat2.jpg" alt="" class="product-img">
<h2 class="product-title">Almond Donut</h2>
<span class="price">Rp 12500</span>
<i class='bx bx-cart add-cart'></i>
</div>
</div>
</section>
<!-- Sweet Alert -->
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- My script -->
<script src="main.js"></script>
</body>
</html>