-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProduct.html
36 lines (36 loc) · 1.21 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
<!DOCTYPE html>
<head>
<title>Product Page</title>
<link href="Main.css" type="text/css" rel="stylesheet" />
<link href="styles.css" type="text/css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</head>
<html>
<body>
<div class="content">
<div id="nav">
</div>
<script>
$(function(){
$("#nav").load("Nav.html");
});
</script>
<div id="product">
</div>
<script>
$(function(){
$("#product").load("Product_content.html");
});</script>
</div>
</body>
<div id="foot">
</div>
<script>
$(function(){
$("#foot").load("Footer.html");
});
</script>
</html>