-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaverage.html
32 lines (31 loc) · 1.08 KB
/
average.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
<!DOCTYPE html>
<html>
<head>
<title>Average</title>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="average.css">
</head>
<body>
<div class="appContainer">
<button class="add btn btn-primary">Add input</button>
<div class="inputsContainer">
<div class="inputs">
<input type="number" class="num">
<button class="remove btn btn-danger">Remove</button>
</div>
<div class="inputs">
<input type="number" class="num">
<button class="remove btn btn-danger">Remove</button>
</div>
<div class="inputs">
<input type="number" class="num">
<button class="remove btn btn-danger">Remove</button>
</div>
</div>
<button id="btn-ent" class="btn btn-success" onclick="calculate()">Calculate</button>
<div id="average">Average number is:</div>
</div>
<script src="jQuery.js"></script>
<script src="average.js"></script>
</body>
</html>