-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.61 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.61 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
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang='en-US'>
<head>
<meta charset='UTF-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<link rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css'
integrity='sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T' crossorigin='anonymous'>
<link href='css/styles.css' rel='stylesheet' type='text/css'>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js'></script>
<script src='js/scripts.js'></script>
<link rel='preconnect' href='https://fonts.gstatic.com'>
<link href='https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@900&display=swap' rel='stylesheet'>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Abel&display=swap" rel="stylesheet">
<style>
body {
background-image: url("img/watercolorperfectsquirell.jpg");
}
</style>
<title>Mr. ROgerRObOts World</title>
</head>
<body>
<div class='container'>
<h1 id='title'>Heyo! Neighbor, please input a number</h1>
<div>
<form id='form-one'>
<div class='form-group'>
<label for='userNum' id='number-title'>Number Input:</label>
<input id='userNum' class='form-control' type='text'>
</div>
<button type='submit' class='btn btn-warning btn-lg btn-block'>Count like a friendly '70's Robot!</button>
</form>
<div id='robot-speaks'>
<h2><span id='result'></span></h2>
</div>
</div>
</div>
</body>
</html>