-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (73 loc) · 1.66 KB
/
index.html
File metadata and controls
76 lines (73 loc) · 1.66 KB
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
<!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</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
background-color: rgb(235, 76, 76);
}
.container {
background-color: rgb(238, 200, 31);
height: 100%;
width: 1200px;
margin: auto;
padding: 20px;
}
.search {
margin-bottom: 100px;
justify-content: space-around;
display: flex;
}
#content {
padding: 20px;
border: 1px solid black;
}
.find-gif {
width: 300px;
height: 50px;
font-size: 25px;
border-radius: 5px;
background-color: rgb(59, 230, 230);
border: none;
}
.input {
width: 500px;
height: 50px;
border-radius: 5px;
border: none;
font-size: 20px;
padding-left: 10px;
}
a {
color: black;
text-decoration: none;
font-size: 4px;
height: 5px;
}
</style>
</head>
<body>
<div class="container">
<div class="search">
<input
type="text"
class="input"
placeholder="Вези меня мразь!"
id="search"
/>
<input type="number" name="" id="inputLimit">
<button type="button" class="find-gif" id="searchBtn">Найти</button>
</div>
<div id="content">
</div>
</div>
</body>
<script src="./giphy.js"></script>
</html>