-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (69 loc) · 3.16 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<title>Love Receiving GIFs!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Javascript-->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">GIPHY API</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav pull-right">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Search</a></li>
</ul>
</div>
</div>
</nav>
<div class="main">
<div class="container-fluid">
<div class="center">
<h1>Your Request Will Be Displayed In A GIPHY!<br /> <small>How do you pronouce it? I say both JIF and GIF hahaha!</small></h1>
<form class="form-inline">
<label class="sr-only" for="inlineFormInputGroup">Search for GIF's from GIPHY</label>
<div class="row input-group">
<div class="input-group col-md-6 col-sm-9">
<input type="text" class="form-control" id="inlineFormInputGroup" placeholder="Search for GIF's from GIPHY">
</div>
<button title="Search" id="submit">Search</button>
</div>
<!-- end of row -->
</form>
<!-- end div.center -->
</div>
<!-- end div.center -->
<!-- Display GIF's here -->
<div class="gif-results"><span id="getdata"></span></div>
<div class="default-gif">
<a class="gif"><img src="https://i.giphy.com/media/Lnuq0IFLhyt6v61Qeo/giphy.gif" title="Default GIF"></a>
</div>
</div>
<!-- end of div container -->
</div>
<!-- end of div.main -->
<div class="footer ">
<p>Default GIF generated from <a href="https://gph.is/g/aXWJ7Np ">Epic Fail Lol GIF</a> by
<a href="https://giphy.com/tennistv " target="_blank ">Tennis TV</a>
</p>
</div>
</body>
</html>