-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GifTastic</title>
<link rel="icon" type="image/png" href="https://giphy.com/static/img/favicon.png" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<h1 class="mainTitle">GifTastic</h1>
<form id="rapper-form">
<label for="rapper-input">Add a Rapper: </label>
<input type="label" id="rapper-input"></input>
<input id="addRapper" value="Add" type="submit" class="btn-warning"></input>
</form>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div id="rapperButtons" class="well well-lg"></div>
</div>
<div class="col-sm-6">
<div id="gifs-appear-here" class="well well-lg"></div>
</div>
</div>
</div>
<footer>
<div class="row justify-content-center">
<div class="col-sm-12 text-center">
© Copyright 2018 <a href="https://wrainaud.com/" target="_blank">William J. Rainaud</a> <br/>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript" src="assets/javascript/jayess.js"></script>
</body>
</html>