-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
60 lines (60 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gif Searcher</title>
<style>
input {
padding: 5px;
display: inline;
}
input[type=button]{
/* margin: 5px; */
width: 100px;
background-color: black;
color: whitesmoke;
border-radius: 20px;
}
.searchBar{
margin-top: 30px;
display: flex;
gap: 10px;
justify-content: center;
}
.title {
padding: 10px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
letter-spacing: 5px;
font-size: xx-large;
background-color: black;
color: white;
}
.select{
width: 100px;
text-align: center;
color: whitesmoke;
background-color: black;
border-radius: 20px;
}
</style>
</head>
<header>
<div class="title">GIF SEARCHER</div>
</header>
<body>
<div class="searchBar">
<select class="select">
<option value="gifs">Gifs</option>
<option value="stickers">Stickers</option>
</select>
<input type="text" class="search input " size="60">
<input type="button" class="search btn" value="Search">
</div>
<hr>
<div class="result">
</div>
</body>
<script src="script.js"></script>
</html>