-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.html
59 lines (55 loc) · 1.68 KB
/
detail.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
<!DOCTYPE html>
<html>
<head>
<title>TOKOSIDIA | Detail Product</title>
<link rel="stylesheet" href="./css/detail.css" />
</head>
<header>
<nav>
<div class="brand">TOKOSIDIA</div>
<div class="search-input">
<input
type="text"
id="search"
class="search-bar"
name="search"
placeholder="Search Your Product"
/>
</div>
<div class="login-link">
<li><a href="./login.html">Login</a></li>
<li><a href="./register.html">Register</a></li>
</div>
</nav>
</header>
<body>
<div class="body-container">
<div id="detail">
<h1>Detail Product</h1>
</div>
<div class="row a">
<img
src="./img/sepatu-detail.jpg"
alt="produk"
width="300"
height="300"
id="gbrSepatu"
/>
</div>
<div class="row b">
<h2 id="label">Sepatu Brand Lokal</h2>
<h3 id="harga">Rp. 800.000</h3>
<p id="desc">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
</p>
<button id="addToCart">Add to Cart!</button>
</div>
</div>
</body>
</html>