-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (34 loc) · 1.11 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Count Up By</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<script src="js/jquery-3.5.1.js"></script>
<script src="js/scripts.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h2><strong>Count up to Calculator!</strong></h2><br>
</div>
<form id="counter">
<div class="form-group">
<label for="num1">Enter the number to which we will be counting up to:</label>
<input id="num1" type="number"></input>
</div><br>
<div class="form-group">
<label for="num2">Enter a number by which we will be counting:</label>
<input id="num2" type="number"></input>
</div><br>
<button type="submit" class="btn">Submit</button>
</form>
<div>
<h3>Your numbers are:</h3>
<ul id="output"></ul>
</div>
</div>
</body>
</html>