-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprimera.html
108 lines (97 loc) · 2.82 KB
/
primera.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Primer HTML</title>
</head>
<body>
<h1>Encabezado</h1>
<p><b>Aquí va el contenido</b> </p>
HTML no respeta los saltos de linea <br>ni aunque lo hagamos en el editor.<br>
HTML tampoco respeta los espacios en blanco <br>
Derechos reservados 2024 ©
<p align="center">
Texto pequeño o grande
</p>
<hr>
Etiquetas descontinuadas desde el 2010 <br>
No usarlas (Solo emergencias): <br>
<b> Texto </b>
<strong> Texto </strong>
<u> Texto </u>
<s> Texto </s>
<marquee> Texto </marquee>
<small> Texto </small>
<hr>
Anclas (anchor)
<a href = "test.html" target="_blank">
Enlace a dar clic
</a>
<br>
<img src="https://tse2.mm.bing.net/th?id=OIP.33VqJRpi2PsJuc9mcRwcCQHaE9&pid=Api&P=0&h=180"
alt="Comunicacion Visual img"
width="150"> <!--No usar width, eso va en CSS-->
<!-- command + shift + 7 -> Para comentar o descomentar -->
<div>
Aqui va una division de pantalla
</div>
<form action="test.html" method="get">
<input type="password" placeholder="Contraseña">
<select name="" id="">
<option value="">Opcion 1</option>
<option value="">Opcion 2</option>
<option value="">Opcion 3</option>
</select>
<input type="submit">
</form>
<!-- Tablas -->
<!-- Las tablas no estan actualizadas para su uso en moviles -->
<!-- Se recomienda para reportes, solo si la app esta orientada a dispositivos moviles -->
<table border align="center">
<thead>
<tr>
<th> Campo 1</th>
<th> Campo 2</th>
<th colspan="2"> Campo 3</th>
<th> Campo 4</th>
</tr>
</thead>
<tbody>
<tr>
<td>Contenido 1</td>
<td>Contenido 2</td>
<td colspan="2">Contenido 3</td>
<td rowspan="2"> Contenido 4</td>
</tr>
<tr>
<td>Contenido 1</td>
<td>Contenido 2</td>
<td>Contenido 3</td>
<td>Contenido 4</td>
</tr>
</tbody>
</table>
<p></p>
<!-- Listas -->
<!-- Lista desordenada -->
<ul>
<li> Elemento 1</li>
<li> Elemento 2</li>
<li> Elemento 3</li>
</ul>
<!-- Lista ordenada -->
<ol>
<li> Elemento 1</li>
<li> Elemento 2</li>
<li> Elemento 3</li>
<li>
<ul>
<li> Elemento 1</li>
<li> Elemento 2</li>
<li> Elemento 3</li>
</ul>
</li>
</ol>
</body>
</html>