-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (45 loc) · 1.48 KB
/
index.html
File metadata and controls
51 lines (45 loc) · 1.48 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Google</title>
<link rel="icon" type="image/icon" href="img/favicon.ico"/>
<link rel="stylesheet" href="styles/index.css"/>
</head>
<body>
<nav id="navbar">
<ul id="nav-left">
<a href="about:blank" target="_blank"><li>About Google</li></a>
<a href="about:blank" target="_blank"><li>Store</li></a>
</ul>
<div id="nav-right">
<ul>
<a href="about:blank" target="_blank"><li>Gmail</li></a>
<a href="about:blank" target="_blank"><li>Images</li></a>
</ul>
<!--add the little logo-->
<img src="img/quokka.jpg" alt="User Account Image"/>
</div>
</nav>
<main id="search-section">
<img src="img/google_full_logo.png" alt="Google Logo" id="google-logo"/>
<div id="search">
<img id="search-icon" src="img/search_icon.png">
<input type="text"/>
</div>
<div id="search-buttons">
<button id="search-button">Google Search</button>
<button id="lucky-button">Get Lucky!</button>
</div>
</main>
<footer>
<p id="Location">Germany</p>
<hr>
<ul id="information">
<li><a href="#">Privacy</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Business</a></li>
<li><a href="#">Settings</a></li>
</ul>
</footer>
</body>
</html>