-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.67 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
38
39
40
<!DOCTYPE html>
<html lang="en-US">
<head>
<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>
<title>Mr. Robogers</title>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1 class="display-4">Welcome to Mr. Robogers' Neighborhood</h1>
<p class="lead">Enter a number below and Mr. Robogers will help you count up to it!</p>
</div>
<form id="robogers">
<div class="form-group">
<label for="robogers-input">Enter a number:</label>
<input type="text" class="form-control" id="robogers-input" required>
</div>
<div class="form-group">
<label for="user-name">Enter your name:</label>
<input type="text" class="form-control" id="user-name" required>
</div>
<button type="submit" class="btn btn-primary"><span id="before-submit">Submit</span><span id="after-submit">Submit Forward</span></button>
</form>
<div id="robogers-speaks">
<h2>Welcome to my boop!</h2>
<img src="img/mr-robogers.gif" alt="A gif of Mr. Roborogers from Adult Swim" class="img-width">
<button class="btn btn-outline-primary reverse-button mt-5">Submit Reversed</button>
<p id="robogers-output" class="mt-3"></p>
<p id="robogers-output-reversed" class="mt-3"></p>
</div>
<div id="terminator-error">
<h2><span id="user-error"></span>, ENTER A WHOLE NUMBER 0 OR ABOVE OR BE TERMINATED</h2>
<img src="img/terminator.gif" alt="A gif of a Terminator unit from Terminator 2" class="img-width">
</div>
</div>
</body>
</html>