-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (99 loc) · 3.37 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1">
<title>My Landing Page</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<nav class="nav-bar">
<div class="container">
<div class="titulo">El trono de Array</div>
<ul class="nav">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Acerca de</a>
</li>
<li>
<a href="#">Contacto</a>
</li>
</ul>
</div>
</nav>
<header class="header">
<div class="container">
<div>
<h1>Este sitio te sorprenderá!</h1>
<p class="header-subtext">
Conocerás la historia de este increíble muchacho al cual se lo conoce como gatuno
</p>
<button type="button" onclick="alert('Lo siento he mentido, no hay gatitos')" class="button-sign">Registrarse</button>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank"><button type="button" class="button-regalo">Quiero un regalo!</button></a>
</div>
<img src="./images/paperwork-5000691.svg" alt="image of a wet leaf">
</div>
</header>
<section class="boxes">
<div class="main2">Imágenes de hermosos animales</div>
<div class="container">
<div class="box">
<img src="./images/yellow-wall-g5795af947_640.jpg" alt="a woman next to a cat">
<p>
Una mujer con su gato
</p>
</div>
<div class="box">
<img src="./images/cat-g8a74f581b_640.png" alt="a very cute cat">
<p>
Un gatito muy lindo!
</p>
</div>
<div class="box">
<img src="./images/tiger-gb2f8e8c16_640.png" alt="tiger">
<p>
Tigre similar a zucaritas
</p>
</div>
</div>
</section>
<section class="quoting">
<div class="container">
<div class="quote">
<p class="quoteT">
"Vivir consiste en construir futuros recuerdos.
</p>
<p class="quoteactor">
-Ernesto Sabato
</p>
</div>
</div>
</section>
<section class="ad">
<div class="container">
<div class="ad-text">
<p class="primer-texto">
¿Deseas estar al dia con mas animalitos?
</p>
<p class="segundo-texto">
Suscribete a mi newsletter para recibir por email!
</p>
</div>
<div class="right">
<button type="button" onclick="alert('Lo siento he mentido, no hay gatitos')" class="button-sign">Registrarse</button>
</div>
</div>
</section>
<footer>
<div class="footer">
<div class="container">
<p>
Copyright © Aarrayy 2022
</p>
</div>
</div>
</footer>
</body>
</html>