-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (44 loc) · 1.68 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="./style.css">
<title>Google</title>
</head>
<body>
<header>
<nav>
<ul><a href="#">Gmail</a></ul>
<ul><a href="#">Imagenes</a></ul>
<ul><a href="#"><img class="mediumIcon" src="./assets/mediumIcon.png" alt="Icono de apps"></a></ul>
<ul><a href="#"><img class="profilePicture" src="./assets/UserIcon.png" alt="Foto de Perfil"></a></ul>
</nav>
</header>
<main>
<div class="containerMain">
<img class="GoogleLogo" src="./assets/GoogleLogoWord.png" alt="Google">
<input type="search" placeholder="No busques google, estas en el.">
<div class="containerButton">
<button>Buscar con Google</button>
<button>I'm Feeling Lucky</button>
</div>
</div>
</main>
<footer>
<div class="containerFooter1">
<ul><a href="#">Publicidad</a></ul>
<ul><a href="#">Negocios</a></ul>
<ul><a href="#">Acerca de</a></ul>
<ul><a href="#">Como funciona la busqueda</a></ul>
</div>
<div class="containerFooter2">
<ul><a href="#">Privacidad</a></ul>
<ul><a href="#">Condiciones</a></ul>
<ul><a href="#">Preferencias</a></ul>
</div>
</footer>
</body>
</html>