-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 1.08 KB
/
index.html
File metadata and controls
33 lines (29 loc) · 1.08 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- Estas son las etiquetas de los títulos -->
<h1>Soy un título h1 </h1>
<h2>soy un h2</h2></h2>
<h3>Soy un h3</h3>
<h4>Soy un h4</h4>
<h5>Soy un h5</h5>
<h6>Soy un h6</h6>
<!-- <h7>Soy un h7</h7> Esto no existe-->
<p>Soy un párrafo <sup> <a href="#enero">1</a></sup> </p><sup>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Odio corporis dolorem ab libero adipisci, nesciunt eaque accusamus sequi, incidunt, quaerat magnam rem eligendi voluptates nostrum. Perferendis veritatis earum ratione vitae!
<img src="https://images.unsplash.com/photo-1743763130798-2f8b6b4fa657?w=900&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxmZWF0dXJlZC1waG90b3MtZmVlZHwyMHx8fGVufDB8fHx8fA%3D%3D" alt="Texto alternativo">
<ol>
<li>Enero</li>
<li>Febrero</li>
<!listas desordenadas: -->
<ul>
<li id="enero">Enero</li>
<li>Febrero</li>
</ul>
</ol>
</html>