-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
66 lines (53 loc) · 2.03 KB
/
template.html
File metadata and controls
66 lines (53 loc) · 2.03 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Tab and SEO metadata -->
<link rel="icon" href="./assets/icons/TBC_Favicon.webp">
<title>Template — The Blue Corner</title>
<meta name="description" content="The Blue Corner website.">
<!-- CSS files -->
<link rel="stylesheet" href="./css/global.css">
<!-- Website fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" onload="this.onload=null;this.rel='stylesheet'">
</head>
<body>
<!-- The Skip Link -->
<a class="screen-reader-bypass" role="link" tabindex="0" onclick="scrollToClass('page', event)" onkeydown="scrollToClass('page', event)">Skip to page content</a>
<!-- The Banner -->
<div id="banner" class="banner" role="banner"></div>
<!-- All of the page -->
<div class="page">
<!-- JS disabled popup -->
<noscript class="noscript-popup">
JavaScript is disabled.
<br>Some parts of the website will not work.
<br>Enable JavaScript for the full experience.
</noscript>
<!-- Content -->
<main>
<!-- Top Text -->
<section>
<h1>Template</h1>
<p>
This is a template page.
</p>
<!-- End of Top Text -->
</section>
<!-- End of Content -->
</main>
<!-- Footer of the page -->
<footer id="footer"></footer>
<!-- End of Page -->
</div>
<!-- Scripts -->
<script src="./js/insertBanner.js" async></script>
<script src="./js/insertFooter.js" async></script>
<script src="./js/profilePicture.js" defer></script>
<script src="./js/scrollHandler.js" defer></script>
<script src="./js/accessibilityHandler.js" defer></script>
</body>
</html>