-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathclase2.html
120 lines (116 loc) · 3.22 KB
/
clase2.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<html>
<head>
<title>Clase 2</title>
</head>
<body>
<h1>Clase 2</h1>
<!-- Aquí estuvimos aprendiendo a usar MARQUEE a pesar de estar deprecada -->
<marquee>
Bienvenido a nuestra clase número 2, esperamos que disfrute su estadía por
aquí
</marquee>
<a href="index.html" title="Boton para volver al Index"> Volver </a>
<p>
Lorem <b>ipsum dolor</b> sit amet, <strong>consectetur</strong> adipiscing
elit. <i>Nullam faucibus</i> bibendum nisi ut bibendum. Sed vel congue
augue, <em>sed sollicitudin arcu.</em>
<abbr title="Class hace referencia a una clase">Class</abbr> aptent taciti
sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
Cras sapien enim, dignissim viverra molestie sit amet, rhoncus eget
turpis. <span style="color: blue">Sed sed tortor bibendum</span>,
consectetur sem et, molestie tortor. <mark>Aliquam</mark> erat volutpat.
Donec gravida nisi vel ultricies fermentum. Aenean dapibus a elit vitae
consequat. <del>Lorem</del> <ins>Loren</ins> ipsum dolor sit amet,
<small>consectetur</small> adipiscing elit. Aenean purus ante, eleifend
eget dui ac, dictum <sub>dictum</sub> <sup>dictum</sup> justo.
x<sup>2</sup>.
</p>
<hr />
<!--Listar desordenadas Unordered List-->
<ul style="list-style-type: disc">
<li>Nicolas</li>
<ul style="list-style-type: circle">
<li>Clase 1</li>
<li>Clase 2</li>
</ul>
<li>Ronald</li>
<ul style="list-style-type: circle">
<li>Clase 1</li>
<li>Clase 2</li>
</ul>
<li>Harlin</li>
<ul style="list-style-type: circle">
<li>Clase 2</li>
</ul>
</ul>
<!--Mezcla de listas -->
<ul>
<li>Nicolas</li>
<ol type="A">
<li>Clase 1</li>
<li>Clase 2</li>
</ol>
<li>Ronald</li>
<ol type="1">
<li>Clase 1</li>
<li>Clase 2</li>
</ol>
<li>Harlin</li>
<ol type="i">
<li>Clase 2</li>
</ol>
</ul>
<!--Lista ordenada Ordered List-->
<ol start="30" type="A">
<li>Clase 20</li>
<li>Clase 21</li>
<li>Clase 22</li>
</ol>
<!--Description List-->
<dl>
<dt>Clase 1</dt>
<dd>Aprendimos las etiquetas básicas</dd>
<dt>Clase 2</dt>
<dd>Aprendimos etiquedas de formateo</dd>
</dl>
<hr />
<!-- Trabajaremos con Tablas -->
<table border="1px" cellspacing="0px">
<tr>
<th>Nombre</th>
<th colspan="2">Apellidos</th>
</tr>
<tr>
<td>Juan Pablo</td>
<td colspan="2">Ayoroa</td>
</tr>
<tr>
<td>Luis</td>
<td colspan="2">Ruberto</td>
</tr>
<tr>
<td>Fernando</td>
<td>Martin</td>
<td>Gan</td>
</tr>
</table>
<hr />
<table border="1px" cellspacing="0px">
<tr>
<th>Nombre</th>
<td>Juan Pablo</td>
<td>Luis</td>
<td>Fernando</td>
</tr>
<tr>
<th rowspan="2">Apellidos</th>
<td rowspan="2">Ayoroa</td>
<td rowspan="2">Ruberto</td>
<td>Martin</td>
</tr>
<tr>
<td>Gan</td>
</tr>
</table>
</body>
</html>