-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
76 lines (68 loc) · 1.91 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./main.css" />
<link rel="icon" type="image/png" href="./assets/icon.png" />
<script src="./script.js" defer></script>
<title>Google</title>
</head>
<body>
<header>
<nav>
<ul class="nav-right-section">
<li>
<a href="https://mail.google.com/mail">Gmail</a>
</li>
<li>
<a href="https://www.google.com.pe/imghp">Images</a>
</li>
<li class="menu-icon"></li>
<li>
<a href="">
<img src="./assets/pfp.jpeg" />
</a>
</li>
</ul>
</nav>
</header>
<main>
<section class="main-logo">
<img src="./assets/google.png" />
</section>
<section class="main-input">
<div class="main-input-container">
<span class="search-icon"> </span>
<input type="text" name="" id="" />
<a class="micro-icon" href=""></a>
</div>
</section>
<section class="main-buttons">
<div>
<button>Search with google</button>
</div>
<div>
<button>I'm feeling lucky</button>
</div>
</section>
</main>
<footer>
<ul class="footer-left">
<li><a href="https://about.google">About</a></li>
<li><a href="https://ads.google.com">Advertising</a></li>
<li><a href="https://smallbusiness.withgoogle.com">Business</a></li>
<li>
<a href="https://google.com/search/howsearchworks"
>How search works</a
>
</li>
</ul>
<ul class="footer-right">
<li><a href="">Privacy</a></li>
<li><a href="">Terms</a></li>
<li><a href="">Settings</a></li>
</ul>
</footer>
</body>
</html>