-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
35 lines (35 loc) · 1.42 KB
/
quiz.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link rel="stylesheet" media="screen and (min-width: 601px)" href="styles/stylesheet.css" />
<link rel="stylesheet" media="screen and (max-width: 600px)" href="styles/mobile.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.13.0/css/all.css">
<link rel="icon" href="images/pi.ico" type="image/*">
<script type="text/javascript" src="assets/pi.js"></script>
<title>quiz | slice of pi</title>
</head>
<body>
<center>
<div class="header">
<div>
<p>places</p>
<p id ="places"></p>
</div>
<div>
<p>time</p>
<p class = "counter"><span class="hour">00</span>:<span class="minute">00</span>:<span class="second">00</span></p>
</div>
</div>
<div class="container">
<em><p id="prompt">tap on the number to start typing</p></em>
<input type="text" id="entry" pattern="\d*" inputmode="numeric" onpaste="return false;" ondrop="return false;" autocomplete="off"/>
<em><p id="prompt">the quiz will end when you input the wrong number</p></em>
</div>
</center>
<script src="scripts/main.js"></script>
</body>
</html>