-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogle.html
More file actions
41 lines (38 loc) · 843 Bytes
/
google.html
File metadata and controls
41 lines (38 loc) · 843 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<style>
div {
text-align: center;
}
.logo {
height: 90px;
width: 270;
margin: auto;
margin-top: 80px;
margin-bottom: 15px;
}
.search-bar {
margin: auto;
width: 400px;
padding-top:5px;
padding-bottom:5px;
border-color:rgb(224, 229, 229);
border-style: solid;
border-radius: 20px;
padding-left: 5px;
border-width: 0.5px;
color: grey;
}
</style>
</head>
<body>
<div>
<img class="logo" src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Google_2015_logo.svg/1200px-Google_2015_logo.svg.png" alt="google-logo">
</div>
<div>
<input type="text" class="search-bar" placeholder="Search Google or type a URL">
</div>
</body>
</html>