-
Notifications
You must be signed in to change notification settings - Fork 2
/
generaltemplate.html
49 lines (39 loc) · 1.61 KB
/
generaltemplate.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Z490EPWZW9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Z490EPWZW9');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link src="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- NOTE -- MAKE SURE YOU ADD YOUR PAGE TITLE -->
<title>Help Code It</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<link href="../style.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<link href="../prism.css" rel="stylesheet" />
<link rel="shortcut icon" href="./images/favicon.png" type="image/x-icon">
</head>
<body>
<!-- SECTION Navbar -->
<div id="nav-placeholder">
</div>
<script>
$(function(){
$("#nav-placeholder").load("../nav.html");
});
</script>
<!-- !SECTION End Nav -->
<!-- SECTION Main Content Goes Below This Line -->
<!-- !SECTION end Main Content -->
<script src="../prism.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm" crossorigin="anonymous"></script>
<script src="../index.js"></script>
</body>
</html>