-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.2 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.2 KB
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 lang="en">
<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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>- M R . R O B O G E R -</title>
</head>
<body>
<div class="container">
<form id="roboger-form">
<h1>Enter a number, and watch as Mr. Roboger responds!</h1>
<img id="rogers-img" src="img/mr-roboger-img.jpg" alt="Slightly offputting depiction of Mr. Rogers">
<div class="form">
<div class="form-group">
<label for="initialNumber">Your number:</label>
<input id="initialNumber" class="form-control" type="number">
</div>
<button class="btn bg-info text-white">Speak, Mr. Roboger</button>
</form>
<div id="answerDisplay">
<blockquote class="blockquote">
<p class="mb-0"><span id="result"></span></p>
<footer class="blockquote-footer">Mr.Roboger, <cite title="Source Title">probably</cite></footer>
</blockquote>
</div>
</div>
</body>
</html>