-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 1.93 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Google Clone">
<title>Google</title>
<link rel="stylesheet" href="style.css">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png?v=2">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png?v=2">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png?v=2">
<link rel="manifest" href="site.webmanifest?v=2">
</head>
<body>
<nav class="mynav">
<ul>
<li><a href="#" style="color: white;">Images</a></li>
<li><a href="#" style="color: white;">Images</a></li>
<li><a href="#" style="color: white;">Gmail</a></li>
<li> <a href="#" class="button red">Sign In</a> </li>
</ul>
</nav>
<img class="logo" alt="Google" src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Google_2015_logo.svg/2560px-Google_2015_logo.svg.png">
<form class="search">
<div class="input">
<a title="Search" class="tooltip"><span class="searchbutton"></span></a>
<input type="text" name="search" value="Search Google or type a URL">
<a title="Search by voice" class="tooltip"><span class="mic"></span></a>
</div>
</form>
<div class="shortcut-container">
<a href="#" class="shortcut">
<img src="whatsapp.ico" alt="shortcut3">
<span>Whatsapp</span>
</a>
<a href="#" class="shortcut">
<img src="spotify.ico" alt="shortcut3">
<span>Spotify</span>
</a>
<a href="#" class="shortcut">
<img src="youtube.ico" alt="shortcut4">
<span>Youtube</span>
</a>
<a href="#" class="shortcut">
<img src="addshortcut.ico" alt="shortcut5">
<span>Add Shortcut</span>
</a>
</div>
</body>
</html>