-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·45 lines (42 loc) · 968 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fake Google</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="header">
<ul>
<li>Gmail</li>
<li>Images</li>
<li id="sign-in">Sign In</li>
</ul>
</div>
<div id="content">
<img src="images/googlelogo.png" alt="Google logo">
<form action="#" method="post">
<div id="search">
<input type="text" name="search">
<img id="mic" src="images/microphone.png">
</div>
<br>
<input type="submit" value="Google Search">
<input type="submit" value="I'm Feeling Lucky">
</form>
</div>
<div id="footer">
<ul id="left-footer">
<li>Advertising</li>
<li>Business</li>
<li>About</li>
</ul>
<ul id="right-footer">
<li>Privacy</li>
<li>Terms</li>
<li>Settings</li>
</ul>
</div>
</body>
</html>