-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdetails.html
28 lines (28 loc) · 937 Bytes
/
details.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
<!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>Details</title>
<link rel="stylesheet" href="./style/details.css">
<link rel="stylesheet" href="./style/navbar.css">
<link rel="stylesheet" href="./style/footer.css">
<link rel="stylesheet" href="./style/cart.css">
<script src="https://kit.fontawesome.com/24c494a6b6.js"
crossorigin="anonymous"></script>
</head>
<body>
<div id="navbar"></div>
<div id="cart"></div>
<div id="homepage_body">
<div id="image_container">
<div id="image_div"></div>
<div id="details_div"></div>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<script type="module" src="./scripts/details.js"></script>
<script type="module"src="./scripts/carts.js"></script>