-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestion.html
More file actions
37 lines (37 loc) · 1.57 KB
/
Copy pathquestion.html
File metadata and controls
37 lines (37 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ImmuneIT</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/question.css" />
<script type="module" src="./js/database.js" defer></script>
<script type="text/javascript" src="./js/question.js" defer></script>
<link rel="icon" href="./assets/logo-invert.png" />
</head>
<body>
<div id="header">
<div id="headerLeft">
<img id="logo" src="./assets/logo.png" alt="ImmuneIT Logo" />
<a class="headerLink" href="./index.html">ImmuneIT</a>
</div>
<div id="headerRight">
<a class="headerLink" href="https://github.com/Jacob-Guglielmin/ImmuneIT">GitHub</a>
<a class="headerLink" href="./about.html">About</a>
<a class="headerLink" href="./signin.html">Sign In</a>
</div>
</div>
<div id="rootContainer">
<div id="interfaceContainer">
</div>
<div id="nextQuestion" onclick="loadNextQuestion()" class="hoverEffect" style="display: none">
Next Question
</div>
<div id="mainMenu" onclick="window.location.href = './index.html'" class="hoverEffect" style="display: none">
Return to Main Menu
</div>
</div>
</body>
</html>