-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (73 loc) · 1.93 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
73
74
75
<!DOCTYPE html>
<html>
<style>
div {
display: flex;
justify-content: center;
align-items: center;
}
div1 {
display: flex;
justify-content: center;
align-items: center;
}
#google-logo {
padding-bottom: 50px;
padding-top: 200px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
border: 1px solid e7e7e7;
background-color: #f3f3f3;
display: float;
}
li {
display: inline;
}
li a {
color: #666;
}
footer {
position: absolute;
bottom: 0;
}
div2 {
display: flex;
justify-content: center;
padding: 25px;
}
</style>
<body>
<header>
<ul>
<li><a href="default.asp">Home</a></li>
<li><a href="news.asp">News</a></li>
<li><a href="contact.asp">Contact</a></li>
<li><a href="about.asp">About</a></li>
</ul>
</header>
<div>
<img id="google-logo" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google logo.">
</div>
<div1>
<input id="search-window" type="text">
</div1>
<div2>
<button style="padding: 5px" type="submit">Google Search</button>
<button id="feeling-lucky-button" type="submit">I'm Feeling Lucky</button>
</div2>
<footer>
<ul>
<li><a href="advertising.asp">Advertising</a></li>
<li><a href="business.asp">Business</a></li>
<li><a href="about.asp">About</a></li>
<li><a href="how search works.asp">How Search Works</a></li>
<li><a href="privacy.asp">Privacy</a></li>
<li><a href="terms.asp">Terms</a></li>
<li><a href="settings.asp">Settings</a></li>
</ul>
</footer>
</body>
</html>