-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (53 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Google homepage</title>
<link type="text/css" rel="stylesheet" href="main.css">
<meta charset="UTF-8">
<meta http-equiv="refresh" content="5; URL=index.html">
</head>
<body>
<header>
<button type="button">Gmail</button>
<button type="button">Images</button>
<div id="apps">
<button type="button">
<div class="box left bottom"></div>
<div class="box left middle"></div>
<div class="box left top"></div>
<div class="box central bottom"></div>
<div class="box central middle"></div>
<div class="box central top"></div>
<div class="box right bottom"></div>
<div class="box right middle"></div>
<div class="box right top"></div>
</button>
</div>
<button class="sign-in" type="button">Sign in</button>
</header>
<div id="center">
<img src="https://www.google.com.au/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png">
<input type="search" autofocus>
<div id="search-buttons">
<input id="search" type="submit" value="Google Search"><input id="lucky" type="submit" value="I'm Feeling Lucky">
</div>
</div>
<footer>
<div>
<p>Australia</p>
</div>
<div id="lowerfooter">
<span id="footer-left">
<a href="">Advertising</a>
<a href="">Business</a>
<a href="">About</a>
</span>
<span id="footer-right">
<a href="">Privacy</a>
<a href="">Terms</a>
<a href="">Settings</a>
</span>
</div>
</footer>
</body>
</html>