-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Font Awesome Version 5 -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
<link rel="stylesheet" href="./styles/style.css" />
<script src="./script.js" defer></script>
<title>SHSAT Demo</title>
<link rel="icon" href="./assets/nocap-logo-withbok-circle.png" type="image/x-icon">
</head>
<body class="josefin">
<header class="flex">
<div class="logoSide">
<h1 class="bold">
<a href="./">SHLearn</a>
</h1>
</div>
<nav>
<div class="hamburger mobilemenutrigger">
<span></span><span></span><span></span>
</div>
<ul class="flex collapsed">
<li>
<a href="./pages/about.html">About</a>
</li>
<li>
<a href="#">API</a>
</li>
<li>
<a href="./pages/flashcards.html">Flashcards</a>
</li>
<li>
<a href="./pages/questions.html">Questions</a>
</li>
<li>
<a href="#">Contact</a>
</li>
<li>
<a class="togglebooty"> <i title="Dark Mode" class="fas fa-moon"></i></a>
</li>
</ul>
</nav>
</header>
<section class="topButtonSection">
<div class="aboutlink buttonSection">
<button class="josefin aboutButton">About</button>
</div>
<div class="updateslink buttonSection">
<button class="josefin updatesButton">Updates page</button>
</div>
</section>
<main>
<div class="startqs buttonSection">
<button class="josefin practiceButton">Enter practice area!</button>
</div>
</main>
<!-- <footer>Foot</footer> -->
</body>
</html>