-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathothers.html
More file actions
86 lines (70 loc) · 2.51 KB
/
others.html
File metadata and controls
86 lines (70 loc) · 2.51 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Others</title>
<style>
body {
font: 20px arial;
}
.question {
text-decoration: underline;
}
.answers {
margin-bottom: 20px;
}
.answers label {
display: block;
}
#submit {
font-size: 20px;
padding: 20px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="allItems">
<header>
<h1 class="title">Quantum Computing Quiz</h1>
</header>
<main>
<!-- sticks out when less than 1000 pixels in width, same for all pages -->
<nav>
<ul class="navbar">
<li><a href="index.html">Overview of Quantum Computing</a></li>
<li><a href="history.html">History of Quantum Computers</a></li>
<li><a href="advantages_disadvantages.html">Advantages and Disadvantages</a></li>
<li><a href="future_applications.html">Future of Quantum Computing and Applications</a></li>
<li><a href="others.html">Quantum Computing Quiz</a></li>
</ul>
</nav>
<article>
<!-- sine wave -->
<div style="text-align: center;">
<canvas id="myCanvas" height="100" width="1000" style="margin: 5px;"></canvas></div>
<script src="canvas.js"></script>
<!-- quiz -->
<h3 class="subtitle">Quantum Computing Quiz</h3>
<div style="margin: 12px;">
<div id="quiz"></div>
<button id="submit">Submit Quiz</button>
<div id="results"></div>
</div>
<script src="quiz.js"></script>
</article>
</main>
<footer>
<p><b>- First Name - Last Name - 2023</b></p><br>
<p><u>Contact Information</u></p><br>
<p>Email: person@gmail.com</p>
<p>Phone: 987-654-3210</p>
<div style="text-align: right; margin-right: 5px;">
<img src="logo.png" width="45px">
</div>
</footer>
</div>
<button onclick="toTop()" id="backToTop" title="Go to the top of the page">Back to Top</button>
<script src="helper.js"></script>
</body>
</html>