-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminus.html
45 lines (45 loc) · 1.94 KB
/
minus.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Maths is Logic</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="stylesheet.css" type="text/css" />
<!--<script type="text/javascript" src="script.js">-->
</head>
<body>
<div class="container">
<!-- <div> -->
<div class="masthead">
<h1 class="siteName"><a href="index.html">Maths is Logic</a></h1>
</div>
<ul class="nav nav-pills">
<li role="presentation"><a href="add.html">Add</a></li>
<li role="presentation" class="active"><a href="minus.html">Minus</a></li>
<li role="presentation"><a href="multiply.html">Multiply</a></li>
<li role="presentation"><a href="divide.html">Divide</a></li>
</ul>
<div class="question-area">
<div class="content">
<h3> Minus </h3>
<p id="question"></p>
<p><span id="number1_sum"></span> <span id="operator"></span> <span id="number2_sum"></span> = </p>
<p><input type="text" id="answer" class="form-control" placeholder="Type here"></p>
</div>
<button type="button" class="submitBtn generalBtn" id="submitAns">Submit</button>
<button type="button" class="helpBtn generalBtn" id="help">Help me!</button>
<div><p id="helpImage1"></p></div>
<div><p id="helpImage2"></p></div>
</div> <!--end tag for question area -->
<!-- </div> -->
<div class="image-container"><img src="boy.png" alt="Boy" width="225" height="auto" /></div>
</div>
<div id="backgroundMsgBox">
<div id="msgBox"></div>
<!-- This is to close the message box-->
<button type="button" class="closeBtn generalBtn" id="closeMsg">Okay</button>
</div>
<script src="questions.js"></script>
<script src="calculate.js"></script>
<script>minus();</script>
</body>
</html>