-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (44 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Giphy Search lets you find an adequate gif to your needs.">
<meta name="keywords" content="Giphy Search">
<meta name="author" content="Rémy Beumier">
<meta property="og:title" content="Giphy Search">
<meta property="og:type" content="">
<meta property="og:url" content="https://beumsk.github.io/Giphy-Search">
<meta property="og:image" content="https://beumsk.github.io/Giphy-Search/cover.jpg">
<meta property="og:image:secure_url" content="https://beumsk.github.io/Giphy-Search/cover.jpg">
<meta property="og:description" content="Giphy Search lets you find an adequate gif to your needs.">
<link rel="stylesheet" href="./style.css">
<title>Giphy Search</title>
</head>
<body>
<!-- partial:index.partial.html -->
<header>
<h1>Giphy Search</h1>
<form action="" method="post" autocomplete="off">
<label for="" style="display: none;">Search</label>
<input class="search" type="text" name="search" placeholder="Search" required>
<input class="btn" type="submit" value="OK">
<input class="btn clear" value="Clear" readonly>
</form>
</header>
<section>
<div class="giphy">
<a href="https://giphy.com/" target="_blank">
<img src="https://res.cloudinary.com/beumsk/image/upload/v1520544016/giphy-logo-6611-s-_vme7aa.png" alt="giphy">
</a>
</div>
</section>
<footer>
<p>Created by <a href="https://remybeumier.be" target="_blank">Rémy Beumier</a> with <a href="https://developers.giphy.com/docs/" target="_blank">Giphy API</a></p>
</footer>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src="./script.js"></script>
</body>
</html>