-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (23 loc) · 836 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fermi Questions</title>
<h1>Fermi Questions Practice</h1>
<script language="javascript" src="app.js" type="text/javascript"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class='content'>
<p id="question"></p>
<label for="quantity">Enter exponent:</label>
<input type="number" id="quantity" name="quantity" value="0" onkeypress="keyPress(event)">
<input type="button" class="button" onclick="getInput()" value="Check Answer" id="submitButton">
<p id="score">Score: 0</p>
<p id="scoreDescription"></p>
<p id="answeredFraction"></p>
<p id="highscore"></p>
</div>
</body>
</html>