-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestbook-calc-type-41.html
43 lines (38 loc) · 1.57 KB
/
testbook-calc-type-41.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>free calculator by testbook</title>
<link rel="stylesheet" type="text/css" href="./style/tb-calc-style.css">
</head>
<body class="calc-page">
<div class="card card--center">
<div class="card__header">
<h2>Integer Calculator</h2>
</div>
<div id="errorAlert"></div>
<div class="card__body card__body--flex-row" id="cardBody">
<div>
<div class="input-group">
<span class="input-addon">Enter the Number : </span>
<input onkeypress="onkeyPressFun()" type="text" name="inputNumber" id="inputNumber"
required>
</div>
<div class="input-action">
<button onclick="calculateFun()">Calculate</button>
<div onclick="resetFun()" class="input-reset">
<img src="https://cdn.testbook.com/images/reset-icon.svg" width="24" height="24" />
</div>
</div>
<div class="input-group" id=inputResultStyle>
<span class="input-addon">Answer =</span>
<input type="text" name="resultBox" disabled value="" id="resultBox">
</div>
</div>
</div>
</div>
<script type="text/javascript" src="./script/math.js"></script>
<script type="text/javascript" src="./script/tb-calc-type-41.js"></script>
</body>
</html>