-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (87 loc) · 2.24 KB
/
index.html
File metadata and controls
88 lines (87 loc) · 2.24 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
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
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="es">
<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="css/styles.css" />
<title>Nueva pestañ</title>
<link rel="icon" type="image/ico" href="imagenes/logo.ico" />
</head>
<body>
<header>
<nav>
<ul class="nav-right-section">
<li>
<a href="#">Gmail</a>
</li>
<li>
<a href="#">Imágenes</a>
</li>
<li class="menu-icon">
<a href="#"></a>
</li>
<li>
<a href="#">
<img
src="https://lh3.googleusercontent.com/ogw/ADGmqu9BBectvlK5hagb255yOxd1lL1DOewtIiTMD14J=s32-c-mo"
alt=""
/>
</a>
</li>
</ul>
</nav>
</header>
<main>
<section class="main-logo">
<img
src="https://img.pngio.com/google-logo-2015-png-image-purepng-free-transparent-cc0-png-google-logo-transparent-10000_3382.png"
alt="google logo"
/>
</section>
<section class="main-input">
<div class="main-input-container">
<span class="search-icon"> </span>
<input
type="text"
placeholder="Realizar una búsqueda en Google o escribir una URL"
class="input"
/>
<a class="micro-icon" href="#"></a>
</div>
</section>
<section class="main-buttons">
<div>
<button>Buscar con Google</button>
</div>
<div>
<button>Voy a tener suerte</button>
</div>
</section>
</main>
<footer>
<ul class="footer-left">
<li>
<a href="">Publicidad</a>
</li>
<li>
<a href="">Empresa</a>
</li>
<li>
<a href="">Cómo funciona la Búsqueda</a>
</li>
</ul>
<ul class="footer-right">
<li>
<a href="">Privacidad</a>
</li>
<li>
<a href="">Términos</a>
</li>
<li>
<a href="">Configuración</a>
</li>
</ul>
</footer>
</body>
</html>