-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (30 loc) · 1.14 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>CyberCup</title>
<link rel="stylesheet" href="./assets/css/bootstrap.min.css">
<link rel="stylesheet" href="./assets/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="./assets/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="./assets/css/landing.css">
<script src="./assets/js/jquery-3.4.0.min.js"></script>
<script src="./assets/js/popper.min.js"></script>
<script src="./assets/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=1400, maximum-scale=1">
</head>
<body>
<div class="content">
<header></header>
<main></main>
<article></article>
<footer></footer>
</div>
<script>
$(document).ready(function(){
$("header").load( "components/header.html" );
$("main").load( "components/main.html" );
$("article").load( "components/article.html" );
$("footer").load( "components/footer.html" );
})
</script>
</body>
</html>