-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (53 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!doctype html>
<html>
<head>
<title>CourseNotes</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div class="loading-overlay">
<div class="loading-spinner"></div>
</div>
<dyn-header></dyn-header>
<div class="hero">
<div class="hero-content">
<h1>Free Revision Notes</h1>
<p>By students, for students.</p>
</div>
</div>
<h1>Welcome to CourseNotes!</h1>
<p>Take a look below at what courses we have notes for.</p>
<div class="courses-grid">
<div class="course-card">
<a href="/courses/J277/index.html">
<h2>GCSE Computer Science</h2>
<p>OCR J277</p>
</a>
</div>
</div>
<style></style>
<dyn-footer></dyn-footer>
<script src="/elements/headerfooter.js" defer></script>
<script>
window.addEventListener("load", function () {
document.querySelector(".loading-overlay").style.display = "none";
});
</script>
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API = Tawk_API || {},
Tawk_LoadStart = new Date();
(function () {
var s1 = document.createElement("script"),
s0 = document.getElementsByTagName("script")[0];
s1.async = true;
s1.src = "https://embed.tawk.to/672a74cd4304e3196adda24f/1ibutggn9";
s1.charset = "UTF-8";
s1.setAttribute("crossorigin", "*");
s0.parentNode.insertBefore(s1, s0);
})();
</script>
<!--End of Tawk.to Script-->
</body>
</html>