-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (39 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Google</title>
<link href="./style.css" type="text/css" rel="stylesheet">
</head>
<body>
<!--Top Right Navigation Menu-->
<header>
<ul>
<li><a href="#">Gmail</a></li>
<li><a href="#">Images</a></li>
<li><a id="apps" href="#"></a></li>
<li><a id="signin" href="#">Sign in</a></li>
</ul>
</header>
<!--Logo and Search Bar-->
<main>
<img src="/home/russell/Downloads/google_logo.png" style="padding-top:109px" alt="Google "width="272" height="92">
<form action="#" method="GET">
<input type="search" name="query" title="Search" autocomplete="off" autofocus />
<input type="submit" name="search" value="Google Search" aria-label="Google Search" />
<input type="submit" name="lucky" value="I'm Feeling Lucky" aria-label="I'm Feeling Lucky" />
</form>
<!--Bottom Footer Menu-->
<footer>
<div>United Kingdom</div>
<ul>
<li><a href="#">Advertising</a></li>
<li><a href="#">Business</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Settings</a></li>
</ul>
</footer>
</body>
</html>