-
Notifications
You must be signed in to change notification settings - Fork 14
/
detail.html
40 lines (38 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="app"></div>
<div id="temporaryContent">
<div class="title">PRODUCT DETAIL</div>
<div class="detail">
<div class="image">
<img src="">
</div>
<div class="content">
<h1 class="name"></h1>
<div class="price"></div>
<div class="buttons">
<button>Check Out</button>
<button class="addCart">Add To Cart
<span>
<svg class="" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 18 20">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 15a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm0 0h8m-8 0-1-4m9 4a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-9-4h10l2-7H3m2 7L3 4m0 0-.792-3H1"/>
</svg>
</span>
</button>
</div>
<div class="description"></div>
</div>
</div>
<div class="title">Similar product</div>
<div class="listProduct"></div>
</div>
<script src="detail.js" type="module"></script>
</body>
</html>