-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (53 loc) · 1.95 KB
/
index.html
File metadata and controls
64 lines (53 loc) · 1.95 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>British Telly</title>
<link rel="stylesheet" href="assets/css/reset.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Bungee+Shade|Happy+Monkey|Oregano" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<container>
<div class="row">
<div class="col-md-12 title-section">
<h1 class="title-header">British Telly</h1>
<h2 class="title-subhead">Presented by Giphy</h2>
</div>
</div>
<div class="row">
<div class="col-md-8">
<div class="row">
<p class="button-instructions">Click any button to see the giphy magic</p>
</div>
<div class="row button-area">
<!-- buttons go here -->
</div>
</div>
<div class="col-md-4">
<p class="add-instructions">Add More Shows</p>
<input type="text" class="form-control show-input" placeholder="Add another show!">
<button type="button" class="btn btn-default add-show">Add Show</button>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="row gif-box">
<!-- gif area -->
</div>
</div>
</div>
<div class="footer">
<a href = "https://github.com/afordfa/giftastic">Github Repo</a>
</div>
</container>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script type="text/javascript" src="assets/javascript/app.js"></script>
</body>
</html>