-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.76 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
<!doctype html>
<head>
<meta charset="utf-8">
<title>Google</title>
<link rel="stylesheet" href= "html5reset-1.6.1.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<nav>
<ul id="navbar">
<li class="left-nav"><a href="#">About</a></li>
<li class="left-nav"><a href="#">Store</a></li>
<li class="right-nav">
<button id="signin-btn">Sign in</button>
</li>
<li class="right-nav"><a href="#">Images</a></li>
<li class="right-nav"><a href="#">Gmail</a></li>
</ul>
</nav>
<body>
<div id="google-container">
<div id="content-wrap">
<img id="logo" src="googlelogo_color_272x92dp.png"/>
<form id="search">
<input id="search-bar" type="text">
<button class= "search-btn" id="google-search-btn" type="button">Google Search</button>
<button class= "search-btn" id="lucky-btn" type="button">I'm Feeling Lucky</button>
</form>
</div>
<footer>
<div class="table">
<ul id="foot">
<li class="left-foot"><a href="#">Advertising</a></li>
<li class="left-foot"><a href="#">Business</a></li>
<li class="left-foot"><a href="#">How Search works</a></li>
<li class="right-foot"><a href="#">Settings</a></li>
<li class="right-foot"><a href="#">Terms</a></li>
<li class="right-foot"><a href="#">Privacy</a></li>
</ul>
</div>
</footer>
</div>
</body>
</html>