-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
31 lines (30 loc) 路 952 Bytes
/
Copy pathabout.html
File metadata and controls
31 lines (30 loc) 路 952 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/style/style.css">
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Montserrat:700&display=swap" rel="stylesheet">
<title>MDID Student Council Website</title>
<link rel="icon" type="image/jpeg" href="/firstTest/images/mouse.jpg">
</head>
<body>
<div class="header">
<h1>Student Council</h1>
<h1 id="version">EARLY ALPHA WEBSITE</h1>
<p>Created by JC ERIC</p>
</div>
<div id="navbar"></div>
<!-- This section is the start of the main page -->
<!-- This section is the end of the main page -->
<script>
fetch(`${window.location.origin}/navbar.html`)
.then(response => response.text())
.then(data => {
document.getElementById("navbar").innerHTML = data;
})
</script>
<footer class="site-footer">
<p>Made with care by the MDID Student Council IT team馃槉</p>
</footer>
</body>
</html>