-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (50 loc) · 2.26 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- First Form on the page -->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="brand">
<a class="navbar-brand" href="#">
<img src="image/chuck.png" class="img-responsive" alt="Responsive image" width="50" height="50"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- Nav Bar Form -->
<div class="input-group">
<input type="text" class="form-control" placeholder="Make Chuck Laugh, or else..." id="userInput">
</div>
<div class ="pull-left">
<div class="checkbox">
<label><input type="checkbox" value="dark" id="dark">Angry Chuck</label>
</div>
</div>
<div class ="pull-left">
<div class="checkbox">
<label><input type="checkbox" value="large" id="large">Hulk Chuck</label>
</div>
</div>
<div class="nav navbar-nav navbar-right">
<button type="button form-right" class="btn btn-lg btn-danger" id="btn-deleteAll" onclick="clearBox('jumbotron')">CHUCK DESTROYS ALL</button>
</div>
</div>
</nav>
<div id="jumbotron">
<div id="top">
</div> <br><br>
<div id="userOutput">
</div>
</div>
</body>
<footer>
</footer>
<script type="text/javascript" src="javascript/main.js"></script>
<script type="text/javascript" src="javascript/chuckNorris.js"></script>
<script type="text/javascript" src="javascript/iiFeDos.js"></script>
<script type="text/javascript" src="javascript/iiFeTres.js"></script>
</html>