-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1002 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>
<title>Google</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<div id = "top">
<div id = "top-links-left">
<a href = "#">About</a>
<a href = "#">Store</a>
</div>
<div id = "top-links-right">
<a href = "#">Gmail</a>
<a href = "#">Images</a>
<div id = "top-buttons">
<img src = "images/options.png"/>
<button>Sign in</button>
</div>
</div>
</div>
<div id = "search">
<img id = "logo" src = "images/googlelogo.png"/>
<form>
<div>
<input type = "search" id ="search-box">
<div id = "search-button">
<button>Google Search</button>
<button>I'm Feeling Lucky</button>
</div>
</div>
</form>
</div>
<div id = "bottom">
<div id = "bottom-links-left">
<a href = "#">Advertising</a>
<a href = "#">Business</a>
</div>
<div id = "bottom-links-right">
<a href = "#">Privacy</a>
<a href = "#">Terms</a>
<a href = "#">Settings</a>
</div>
</div>
</body>