-
Notifications
You must be signed in to change notification settings - Fork 0
/
displayEvensCodeAlong.html
43 lines (39 loc) · 1.59 KB
/
displayEvensCodeAlong.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
<!DOCTYPE html>
<html>
<head>
<title>Display Evens Code Along</title>
<script type="text/JavaScript" src="displayEvensCodeAlong.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
<body>
<h1> Sample </h1>
<div class="container">
<form name="displayEven" onsubmit="validateItems()">
<div class="form-group row">
<label for="inputStartingNumber" class="col-sm-2 col-form-label">Starting Number</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputStartingNumber">
</div>
</div>
<div class="form-group row">
<label for="inputEndingNumber" class="col-sm-2 col-form-label">Ending Number</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputEndingNumber">
</div>
</div>
<div class="form-group row">
<label for="inputStep" class="col-sm-2 col-form-label">Step</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputStep">
</div>
</div>
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary">Display Evens</button>
</div>
</div>
</form>
</body>
</html>