-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 2.41 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
<!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.0, minimum-scale=1.0, maximum-scale=1.0">
<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/*">
<title>home | slice of pi</title>
<meta name="description" content="How many digits of pi do you remember? Test your memory with this quiz.">
<meta property="og:title" content="slice of pi">
<meta property="og:description" content="How many digits of pi do you remember? Test your memory with this quiz.">
<meta property="og:image" content="images/largepi.png">
</head>
<body>
<div class="container">
<!--- title page -->
<div class="center">
<h1>slice of pi</h1>
<p>how many digits of pi can you recite?</p>
<p>- - - - - - - - - - - - - - - - -</p>
<p>enable typo forgiveness? <i id="modal-btn" class="fa fa-question-circle" aria-hidden="true"></i></p>
<div id="typo-modal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<p>you will have one opportunity to correct a typo before the quiz ends</p>
</div>
</div>
<!-- Rounded switch -->
<label class="switch">
<input type="checkbox" id="mercy" checked>
<span class="slider round"></span>
</label>
<p>which decimal place do you want to start at?</p>
<input type="number" placeholder="0" pattern="\d*" inputmode="numeric" id="startingPoint"/>
<br>
<p>- - - - - - - - - - - - - - - - -</p>
<a class="btn" id="start-btn">start</a>
</div>
</div>
<div class="footer">
<!--- social link --->
<div class="social-links">
<a href="https://www.youtube.com/answerinprogress" class="fab fa-youtube" target="_blank" rel="noopener noreferrer"></a>
<a href="https://www.twitter.com/answerintweets" class="fab fa-twitter" target="_blank" rel="noopener noreferrer"></a>
<a href="https://www.instagram.com/answerinprogress" class="fab fa-instagram" target="_blank" rel="noopener noreferrer"></a>
</div>
</div>
<script src="scripts/start.js"></script>
</body>
</html>