-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebMultiply</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.1/anime.min.js" integrity="sha512-z4OUqw38qNLpn1libAN9BsoDx6nbNFio5lA6CuTp9NlK83b89hgyCVq+N5FdBJptINztxn1Z3SaKSKUS5UP60Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script.js"></script>
</head>
<body>
<div id="main">
<div id="mode-bar">
<button id="prev-mode-button" class="icon-button" title="Previous mode">
<span class="fa fa-angle-left"></span>
</button>
<div class="hide-overflow">
<div id="mode-header-container">
<h2>Multiply</h2>
<h2>Divide</h2>
<h2>Add</h2>
<h2>Subtract</h2>
</div>
</div>
<button id="next-mode-button" class="icon-button" title="Next mode">
<span class="fa fa-angle-right"></span>
</button>
</div>
<div id="question-container">
<p id="question">
<span class="operand"></span>
<span class="operator"></span>
<span class="operand"></span>
</p>
<p id="prev-question"></p>
</div>
<form id="answer-form">
<input id="answer" type="number" placeholder="Answer" autofocus>
<button type="submit">Check</button>
</form>
</div>
<!--<button id="settings-button" class="icon-button">
<span class="fa fa-cog"></span>
</button>-->
<footer>Copyright © 2021 Caleb Chalmers | <a href="https://github.com/CalebChalmers">Github <span class="fab fa-github"></span><a></footer>
</body>
</html>