-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.29 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.29 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(function(){
$("#header").load("Pages/Header/header.html");
$('#canvas').load("Pages/Canvas/canvas.html");
$('#operation').load("Pages/Operation/operation.html");
$("#footer").load("Pages/Footer/footer.html");
});
</script>
<link rel = "stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header"></div>
<div class = "row">
<div class = "col-md-9" id = "canvas">
</div>
<div class = "col-md-3" id = "operation">
</div>
</div>
<div id="footer"></div>
</body>
</html>