-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelementossemanticos.html
More file actions
65 lines (65 loc) · 1.81 KB
/
elementossemanticos.html
File metadata and controls
65 lines (65 loc) · 1.81 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
61
62
63
64
65
<!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">
<title>Elementos Semánticos HTML y colores</title>
</head>
<body text="blue" bgcolor="silver">
<header>
<h1>Mi Primer App con HTML</h1>
</header>
<nav>
<a href="#">Ir a Sección 2</a>
<a href="#">Ir a Sección 3</a>
</nav>
<Section>
<article>
<img src="https://www.w3.org/html/logo/badge/html5-badge-h-connectivity-css3-semantics-storage.png" alt="Logo HTML5" width="50%" height="50%">
</article>
<article>
<h1>Ejemplo de listas ordenadas y desordenadas</h1>
<h3>Lista ordenada con números:</h3>
<ol>
<li>Edificio</li>
<li>Casa</li>
<li>Estadio</li>
</ol>
<h3>Lista ordenada con letras:</h3>
<ol type="a">
<li>Edificio</li>
<li>Casa</li>
<li>Estadio</li>
</ol>
<h3>Lista desordenada</h3>
<ul>
<font color="white">
<li>Edificio</li>
<li>Casa</li>
<li>Estadio</li>
</font>
</ul>
</article>
<article>
<a href="https://developer.mozilla.org/es/docs/Web/HTML/Element/ol">Enlace a la <strong>descripción</strong>
de <em>MDN</em> para listas ordenadas</a>
</article>
</Section>
<aside>
<font color="purple">
<h3>Testimonios</h3>
<p>Me gusta mucho esta pagina.</p>
</font>
</aside>
<footer>
<font color="green">
<h4>Redes sociales</h4>
<a href="#">Facebook</a>
<a href="#">Tiwtter</a>
</font>
</footer>
</body>
</html>
</body>
</html>