-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Google</title>
<link href="css/reset.css" rel="stylesheet" type="text/css">
<link href="css/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="container">
<header>
<nav>
<ul>
<li id="user-name">Mason</li>
<li><a href="#">Gmail</a></li>
<li><a href="#">Images</a></li>
<li><div id="grid"><a href="#"></a></div></li>
<li><div id="notifications"><a href="#"></a></div></li>
<li><a href="#" id="headshot"><img src="img/mason-headshot.jpg" height="32px" width="32px"></a></li>
</ul>
</nav>
</header>
<div id="main">
<div id="google-icon">
<img src="img/google.png" height="90" width="270">
</div>
<div id="search-box-container">
<div>
<form>
<input id="search-box" type="text" name="search-term">
<input id="search-button" type="submit" value="Google Search">
<input id="lucky-button" type="submit" value="I'm Feeling Lucky">
</form>
</div>
<img id="mic-icon" src="img/mic-icon.png">
</div>
</div>
<footer>
<div id="footer-content">
<div id="footer-left">
<ul>
<li><a href="#">Advertising</a></li>
<li><a href="#">Business</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
<div id="footer-right">
<ul>
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Settings</a></li>
</ul>
</div>
</div>
</footer>
</div>
</body>
</html>