-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.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" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>GifTalactic</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.js"integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Righteous|Shadows+Into+Light" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/style.css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12 buttons-dump">
<!-- buttons dump -->
<h1>BUTTONS GO HERE</h1>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-8 gifs-dump">
<h1></h1>
<!-- GIFs dump -->
</div>
<div class="col-md-4 input-div order">
<!-- User Input Div -->
<div id="topic-form" class = "input-group mb-3">
<div class= "input-group-prepend">
<input class="form-control" type="text" id="topic-input"><br>
<!-- This button will trigger our AJAX call -->
<input id="find-topic" type="submit" value="Search">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="assets/javascript/app.js"></script>
</body>
</html>