-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (67 loc) · 1.36 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
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title> Google</title>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
display: inline;
}
.about, .store {
margin-top: 2px;
padding: 8px;
font-family: arial,sans-serif;
}
.topnav {
padding: 10px;
}
.logo {
padding-top: 200px;
padding-bottom: 40px;
}
.searchbar {
color: rgba(0, 0, 0, .87);
word-wrap: break-word;
width: 550px;
height: 40px;
}
.searchbarcontainer {
padding-bottom: 40px;
}
.below-search-button {
padding: 10px;
margin-right: 2px;
margin-left: 2px;
font-family: arial,sans-serif;
background-color: #f2f2f2;
border: 1px solid #f2f2f2;
font-size: 13px;
font-weight: bold;
min-width: 53px;
color: #757575;
}
</style>
</head>
<body>
<div class="topnav">
<ul>
<li><a class="about">About</a></li>
<li><a class="store">Store</a></li>
</ul>
</div>
<div class="logo" align="center">
<img src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" alt="Google" width="350">
</div>
<div class="searchbarcontainer" align="center">
<input type="text" class="searchbar">
</div>
<div class="belowsearchbar" align="center">
<button class="below-search-button" type="button" >Google Search</button>
<button class="below-search-button" type="button">I'm feeling lucky</button>
</div>
</body>
</html>