-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="stylesheet.css"/>
<meta charset="utf-8">
<script src="javascript.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Giphy Finder</title>
</head>
<body>
<h1>Giphy Finder</h1>
<p>Type in a gif you want to search for in the search box.</p>
<div class="center">
<div class="form-group mb-2">
<input id = "input1" type = "text" class="form-control" placeholder = "Type here">
</div>
<button id = "btn" class="btn btn-primary"> Click to search</button>
<button id = "btnc" class ="btn btn-danger"> Clear the results</button>
<br><br>
<div id="gif"></div>
</div>
</body>
<footer>
<p class="footerText">Created by: Xavier Matos © 2022 </p>
</footer>
</html>