-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (51 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" type="image/x-icon" href="README_files/favicon.ico">
<link rel="stylesheet" href="dwcdn/css/bootstrap.min.css">
<link rel="stylesheet" href="dwcdn/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.1.1/css/hover-min.css" type="text/css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Special+Elite" rel="stylesheet">
<link rel="stylesheet" href="css/index.css"/>
<title>Give A GIF</title>
</head>
<body>
<header>
<h2>Give a <strong>GIF</strong></h2>
</header>
<div class="container top">
<p class="lead">
<button class="btn" role="button" onClick="GIF_api()">SEARCH</button>
</p>
</div>
<div class="container gif_container">
<div class="row">
<div id="gif-image"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=" crossorigin="anonymous"></script>
<footer>
<div class="row">
<div class="col-sm-3">
<a href="https://github.com/mboladop"><i class="fab fa-github fa-3x" ></i></a>
<a href="https://www.linkedin.com/in/luisa-bolado-pardo/"></a><i class="fab fa-linkedin-in fa-3x"></i></a>
</div>
<div class="col-sm-3">
</div>
<div class="col-sm-3">
</div>
<div class="col-sm-3">
<a href="https://developers.giphy.com/"><p><img src="footer.png" height= '50px' width= '180px'></img></p></a>
</div>
</div>
</footer>
<script type="text/javascript" src="dwcdn/js/jquery.min.js"></script>
<script type="text/javascript" src="gif_list.js"></script>
<script type="text/javascript" src="index.js"></script>
<script type="text/javascript" src="dwcdn/js/bootstrap.min.js"></script>
</body>
</html>