-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (46 loc) · 1.56 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GIPHY PROJECT</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.5.0/css/bulma.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<!-- Search Box -->
<form class="giphy_search">
<div class="field has-addons">
<div class="control input-field">
<input class="input" type="text" placeholder="Search for anything">
</div>
<div class="search_button control">
<button type="submit" class="button is-info is-outlined">
Search
</button>
</div>
</div>
</form>
<!-- /Search Box -->
</header>
<main>
<!-- Page Layout -->
<div class="tile is-ancestor">
<div class="tile is-vertical is-parent" id="col_0"> </div>
<div class="tile is-vertical is-parent" id="col_1"> </div>
<div class="tile is-vertical is-parent" id="col_2"> </div>
<div class="tile is-vertical is-parent" id="col_3"> </div>
</div>
<!-- /Page Layout -->
</main>
<footer>
<!-- More Button -->
<div class="see_more has-text-centered">
<a class="button is-info is-outlined">See More!</a>
</div>
<!-- More Button -->
</footer>
<script src="http://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="js/giphy.js"></script>
</body>
</html>