-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacadia.html
93 lines (93 loc) · 3.74 KB
/
acadia.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="acadia.css">
<script src="acadia.js"></script>
<script src="subject_db.json"></script>
</head>
<body>
<h1 class="title">
Acadia
</h1>
<!-- Search bar elements -->
<div class="subjects-bar">
<button class="subject-button" id="home-button" onclick=" load_page('Home')">Home</button>
<button class="subject-button" id="calculus-button" onclick=" load_page('Calculus')">L3 Calculus</button>
<button class="subject-button" id="physics-button" onclick=" load_page('Physics')">L3 Physics</button>
<button class="subject-button" id="english-button" onclick=" load_page('English')">L3 English</button>
<button class="subject-button" id="software-development-button"
onclick=" load_page('Software Development')">L3 Software Development</button>
<button class="subject-button" id="electronics-button" onclick=" load_page('Electronics')">L3
Electronics</button>
</div>
<div id="about-us">
<!-- About Us Div -->
<div class="heading-bg">
<h2 class="heading">
About Us
</h2>
</div>
<div class="text-bg">
<p class="text">
Welcome to Acadia, your one stop shop for study in level 3.
</br>
</br>
Acadia is designed to be an easy to use hub for everything you need to study in NCEA Level 3.
</br>
By now, we all know that the NZQA website is simply insufficient when it comes
</br>
to looking at past papers, and finding good exemplars and study guides. Its for this reason, that I made
Acadia; to solve the problem of simplifying study.
</p>
</div>
</div>
<div id="subject-data" hidden="true">
<!-- Subject Data Div-->
<div class="heading-bg" id="subject-heading-bg">
<h2 class="heading" id="subject-heading">
Placeholder Text
</h2>
</div>
<div class="text-bg" id="subject-about-bg">
<p class="text" id="subject-about">
Placeholder text for subject info
</p>
</div>
<div class="past-paper-parent" id="past-paper-parent-headings">
<div class="past-paper-child" id="past-paper-child-heading">
<h2 class="heading" id="past-paper-heading">
Past Papers
</h2>
</div>
<div class="past-paper-child" id="assessment-schedule-child-heading">
<h2 class="heading" id="assessment-schedule-heading">
Mark Scheme
</h2>
</div>
<div class="past-paper-child" id="study-guides-heading-bg">
<h2 class="heading" id="study-guides-heading">
Study Guides
</h2>
</div>
</div>
<div class="past-paper-parent" id="past-paper-parent-text">
<div class="past-paper-child" id="past-paper-child-text">
<p class="text" id="past-paper-text">
Placeholder text
</p>
</div>
<div class="past-paper-child" id="assessment-schedule-child-text">
<p class="text" id="assessment-schedule-text">
Placeholder text
</p>
</div>
<div class="past-paper-child" id="study-guides-text-bg">
<p class="text" id="study-guides-text">
Placeholder text
</p>
</div>
</div>
</div>
</body>
</html>