-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (101 loc) · 5.25 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" >
<title>College Exam Hub - Crush Exam Day</title>
<!-- Icon -->
<!-- <link rel="icon" href="resources/cehLogo.png" > -->
<!-- Functionality and styling -->
<link rel="stylesheet" href= "resources/homepage.css">
<link rel="stylesheet" href= "resources/headFoot.css">
<script src="resources/jquery-3.6.1.min.js"></script>
<script src="resources/headFoot.js"></script>
<script src="resources/homepage.js"></script>
<script src="resources/headSearch.js"></script>
<!-- Font for Names from Google Fonts, These fonts are licensed under the Open Font License. -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lilita+One&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body onload="lastMod();">
<!-- Header -->
<div class="flex-container" id="header">
<a id="logoLin" href="index.html"><img id="headLogo" alt="College Exam Hub Log" src="resources/cehLogo.png"></a>
<a id="home" class="normLinks" href="index.html">Home</a>
<a id="supCourse" class="normLinks" href="pages/courseList/courseList.html">Course List</a>
<form autocomplete="off" onsubmit="travel(event);" id="formBar">
<div id="autoHolder">
<!-- Image from: https://www.pngwing.com/en/search?q=search+icon#google_vignette -->
<img class="minBut" id="searchButton" onclick="travel(event);" src="resources/searchIcon.png" alt="Image Search button">
<input id="searchBar" type="text" placeholder="Search Courses">
<!-- Image from: https://thenounproject.com/browse/icons/term/x/ -->
<img class="minBut" id="clearButton" onclick="clearField();" src="resources/x.png" alt="clear search buttom">
</div>
</form>
<a class="confLink" onclick="confEm();" >Confirm Email</a>
</div>
<!-- main section between header and footer ! -->
<div id="mainSec">
<h1 id="welcome">Welcome to College Exam Hub!</h1>
<div id="expl">
<p id="desc">
The College Exam Hub is a <span class="impWords">constantly updated</span> hub for college students to <span class="impWords">quickly</span> access <span class="impWords">relevent</span> back exams for classes offered by their university.
</p>
<h2>Pick a College:</h2>
<!-- onChange called when new school selected -->
<select id="schoolSel" onchange="scoCheck();">
<!-- Value != to inner HTML -->
<option value="Adelphi University">Adelphi University</option>
<option value="Bentley College">Bentley College</option>
<option value="Canisius College">Canisius College</option>
<option value="Fordham University">Fordham University</option>
<option value="Harvard University">Harvard University</option>
<option value="Lehigh Univervsity">Lehigh Univervsity</option>
<option value="Le Moyne College">Le Moyne College</option>
<option value="Manhattan College">Manhattan College</option>
<option value="Marist College">Marist College</option>
<option value="Rensselaer Polytechnic Institute" selected>Rensselaer Polytechnic Institute</option>
<option value="Temple University">Temple University</option>
<option value="University at Albany">University at Albany</option>
</select>
<p id="locResp">
</p>
</div>
<!-- Info at Bottom -->
<div id="bcHold">
<!-- Normal Description -->
<div class="innerbc" id="browse">
<h2 class="inHead">Heres what you can do right now:</h2>
<ul class="attLis">
<li>Search for specific courses and view associated exams</li>
<li>View ratings for exams</li>
<li>Download exams</li>
</ul>
<a class="mainBut" id="findEx" href="pages/findexams/findexams.html">Find Exams</a>
</div>
<div class="innerbc" id="confirm">
<!-- Confirmed email User Description -->
<h2 class="inHead">Confirm your University email with us <br> for more options:</h2>
<ul class="attLis">
<li>Upload your own back exams</li>
<li>Leave ratings on exams</li>
<li>Add comments to exams (coming soon)</li>
</ul>
<a class="mainBut" id="confEm" onclick="confEm();" >Confirm Email</a>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div id="helpLogos" class="flex-container">
<a id="discLink" href="https://discord.gg/dEYEmbhGqf"><img id="discLogo" alt="Discord Logo" src="resources/636e0a6918e57475a843f59f_icon_clyde_black_RGB.png"></a>
<a id="gitLink" href="https://github.com/jfodera/College-Exam-Hub"><img id="gitLogo" alt="Github Logo" src="resources/github-mark.png"></a>
</div>
<p id="cpright">© 2024 College Exam Hub </p>
<p id="date"><span id="lm">Last Modified: </span></p>
</footer>
</body>
</html>