-
Notifications
You must be signed in to change notification settings - Fork 0
/
product.html
53 lines (43 loc) · 1.41 KB
/
product.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
<!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>Document</title>
<link rel="stylesheet" href="./styless/nav.css">
<link rel="stylesheet" href="./styless/product.css">
<link rel="stylesheet" href="styless/footer.css">
</head>
<body>
<div id="container">
<div id="navbar"></div>
<!-- <div id="main"></div> -->
<div id="container1">
</div>
</div>
<div id="product-container">
<div id="product-image">
<img src="" alt="" id="image">
</div>
<div id="product-details">
<div id="brandname"></div>
<!-- <div id="productname"></div> -->
<div id="productdetails"></div>
<div id="prodictprice"></div>
<div id="new-function">
<div> <button>Go To Home</button> </div>
<div><button id="btn">Add To Cart</button> </div>
</div>
</div>
</div>
<!-- footer section -->
<div id="bigcontainer">
<!-- <----subscript-------------- -->
<!-- upper -->
</div>
</body>
</html>
<script src="./jsscripts/product.js"></script>
<script type="module" src="./jsscripts/nav.js"></script>
<script type="module" src="./jsscripts/footer.js"></script>