-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
47 lines (44 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google</title>
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="/css/stylesheet.css">
</head>
<body>
<nav>
<a href="#">Gmail</a>
<a href="#">Images</a>
<img src="/images/menu.PNG">
<button>Sign in</button>
</nav>
<section class="section-1">
<img src="/images/logo.png" class="logo">
<form><br><br>
<div class="search-box">
<img src="/images/search.svg" class="search-icon">
<input type="text" class="s-input">
<img src="/images/voice.png" class="vs-icon">
<input type="submit" class="search-button" value="Google Search">
<input type="submit" class="search-button" value="I'm Feeling Lucky">
</div>
</form>
</section>
<footer>
<div class="links">
<div class="link-1">
<a href="#">Advertising</a>
<a href="#">Business</a>
<a href="#">About</a>
<a href="#">How Search works</a>
</div>
<div class="link-2">
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Settings</a>
</div>
</div>
</footer>
</body>
</html>