-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle.html
67 lines (57 loc) · 2.15 KB
/
google.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="shortcut icon" href="https://www.google.com/s2/favicons?domain=www.google.com" type="image/x-icon">
<title>Google</title>
</head>
<body>
<header>
<nav>
<a href="#">Correo</a>
<a href="#">Imagenes</a>
<i id="apps" class="material-icons md-18">apps</i>
<i id="notifications" class="material-icons">notifications</i>
<img id="avatar" src="media/images/avatar.jpg" alt="avatar" srcset="">
</nav>
</header>
<div id="main">
<div id="doodle">
<img src="media/images/doodle.png" alt="doodle">
</div>
<div id="text-to-search">
<input type="text" name="" id="text">
<i id="mic" class="material-icons" tooltip="Busqueda de voz" >mic</i>
</div>
<div id="options-to-search">
<button id="search" class="search-buttons">Buscar con Google</button>
<button id="lucky" class="search-buttons">Me siento con suerte</button>
</div>
</div>
<footer>
<div id="locate" >
<span>México</span>
</div>
<div class="menus-inferiores">
<div>
<nav class="menu-inferior">
<a href="#">Publicidad</a>
<a href="#">Negocios</a>
<a href="#">Acerca de</a>
</nav>
</div>
<div>
<nav class="menu-inferior">
<a href="#">Privacidad</a>
<a href="#">Condiciones</a>
<a href="#">Preferencias</a>
</nav>
</div>
</div>
</footer>
</body>
</html>