-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (59 loc) · 2.17 KB
/
index.html
File metadata and controls
60 lines (59 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<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="icon" href="https://cdn.icon-icons.com/icons2/2415/PNG/512/google_original_logo_icon_146496.png">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/main_desktop.css" media="screen and (min-width: 500px)">
<title>Google Clone</title>
</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/ADea4I605kXGC4zRaFi7vLnuSEUA2GvDXrqpCO6dBDxQsw=s32-c-mo" alt="Foto de perfil"></a></li>
</ul>
</nav>
</header>
<main>
<section class="main-logo">
<img src="https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" alt="">
</section>
<section class="main-input">
<div class="main-input-container">
<span class="search-icon"></span>
<input type="text" placeholder="Haz una búsqueda" readonly>
<a class="micro-icon" href=""></a>
</div>
</section>
<section class="main-buttons">
<div>
<button>Buscar con Google</button>
</div>
<div>
<button>Me siento con suerte</button>
</div>
</section>
<div class="space">
</div>
</main>
<footer>
<ul>
<li><a href="">Publicidad</a></li>
<li><a href="">Negocios</a></li>
<li><a href="">Sobre Google</a></li>
<li><a href="">Cómo funciona</a></li>
</ul>
<ul>
<li><a href="">Privacidad</a></li>
<li><a href="">Condiciones</a></li>
<li><a href="">Preferencias</a></li>
</ul>
</footer>
</body>
</html>