-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrueba1.html
More file actions
36 lines (32 loc) · 823 Bytes
/
Copy pathPrueba1.html
File metadata and controls
36 lines (32 loc) · 823 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Título de la pestaña del navegador</title>
<style>
body {
background: #ff5f6d;
background: linear-gradient(to right, #ff5f6d, #ffc371);
}
button {
color: white;
background-color: black;
}
</style>
</head>
<body>
<h1 class="texto-principal">Texto que aparece en el contenido de la página.</h1>
<button onclick="alert('Buenas Blockmaker')">Botón</button>
<p>Ahora viene salto de página.</p>
<p>Hola</p>
<p>Este es un nuevo párrafo</p> <img
src="http://blockmaker.academy/wp-content/uploads/2023/02/logo-blockmaker.png">
<footer>
<div>
<div id="titulo-footer">
<p>© 2023 BlockMaker Academy Todos los derechos reservados.</p>
</div>
</div>
</footer>
</body>
</html>