-
Notifications
You must be signed in to change notification settings - Fork 0
/
testbook-calc-type-26.html
40 lines (36 loc) · 1.47 KB
/
testbook-calc-type-26.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
<!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>Least to Greatest Numbers</h2>
<p>Enter all the numbers separated by comma</p>
</div>
<div id="errorAlert"></div>
<div class="card__body" id="cardBody">
<div class="input-group">
<span class="input-addon">Enter the Numbers seperated by (,)</span>
<input onkeypress="onkeyPressFun()" type="text" name="inputNumber" id="inputNumber"
required>
</div>
<div class="input-action">
<button onclick="calculateFun()">Solve</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">Ordering: Least to Greatest</span>
<input type="text" name="resultBox" disabled value="" id="resultBox">
</div>
</div>
</div>
<script type="text/javascript" src="./script/tb-calc-type-26.js"></script>
</body>
</html>