-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (44 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CARROTS</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
</head>
<body>
<div class="container">
<div class="page-header" style="text-align:center">
<h1>What's your carrot name? <small>With free carrot trivia!</small></h1>
</div>
<div class="row" style="margin-top:100px;margin-bottom:100px">
<div class="col-lg-3"></div>
<div class="col-lg-6">
<div class="input-group input-group-lg">
<input id="nameInput" type="text" class="form-control">
<span class="input-group-btn">
<button id="clearButton" class="btn btn-default" type="button">Clear</button>
</span>
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
<div class="col-lg-3"></div>
</div><!-- /.row -->
<div class="row" style="margin-top:40px;text-align:center">
<div class="jumbotron">
<h1 id="nameOutput">Type in your name!</h1>
</div>
</div>
</div>
<div id="carrotfactsdiv" style="position:absolute;bottom:0px;height:80px;width:100%;background:orange;text-align:center;font-size:25px;color:white;padding-top:10px">
<div id="carrotfacts">
</div>
</div>
<img style="position:absolute;left:0px;top:30%;height:300px" src="img/dancingcarrot.gif"></img>
<img style="position:absolute;right:0px;top:30%;height:300px" src="img/dancingcarrot.gif"></img>
<!-- <iframe style="position:absolute;right:0px;top:0px" width="300px" height="100px" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/636676&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"></iframe> -->
<script src="js/jquery-2.1.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="js/carrotFacts.js"></script>
<script src="js/app.js"></script>
</body>
</html>