-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsubtract.html
58 lines (51 loc) · 1.64 KB
/
subtract.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<title>Subtract</title>
</head>
<body>
<audio id="myAudio">
<source src="wrong.mp3" type="audio/mpeg">
</audio>
<header>
<div class="container">
<div class="nav">
<h2><span><i class="fa fa-trophy" aria-hidden="true"></i></span> MATH 4 KIDS</h2>
<nav>
<ul>
<li><a href="index.html">Add</a></li>
<li class="current" ><a href="subtract.html">Subtract</a></li>
<li><a href="multiply.html">Multiply</a></li>
<li><a href="divide.html">Divide</a></li>
</ul>
</nav>
</div>
</div>
</header>
<div class="wrapper">
<div class="equation">
<h1 id="num1" style="color:#FE4A49"></h1>
<h1 style="color: #2AB7CA">-</h1>
<h1 id="num2" style="color: #FED766">1</h1>
<h1 style="color: #F86624">=</h1>
<h1 style="color: gray">?</h1>
</div>
<div class="answer-options">
<div class="options" style="background-color: #FE4A49;">
<h1 id="option1">1</h1>
</div>
<div class="options" style="background-color: #2AB7CA;">
<h1 id="option2">2</h1>
</div>
<div class="options" style="background-color: #FED766;">
<h1 id="option3">3</h1>
</div>
</div>
</div>
<script src="subtract.js"></script>
</body>
</html>