-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhtml-obsoleto.html
More file actions
53 lines (51 loc) · 1.29 KB
/
html-obsoleto.html
File metadata and controls
53 lines (51 loc) · 1.29 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Etiquetas Obsoletast</title>
<style>
.code {
background-color: #555;
color: #fff;
padding: 5px;
}
p {
font-family: sans-serif;
}
</style>
</head>
<body>
<!--
Etiquetas obsoletas: Etiquetas que fueron descontinuadas, no se recomiendan para uso HTML-->
<font></font>
<center></center>
<blink></blink>
<big></big>
<strike></strike>
<tt></tt>
<!-- Etiquetas Nuevas:
del: Texto tachado
s: Texto incorrecto
code: Tipografia monospace
u: Subrayar
b: Resaltar texto
strong: Más importancia para resaltar un texto
em: Letra en cursíva, hacer enfasís en algo.
-->
<p>
<s>NINIO</s>
</p>
<p>
<span>$5.999</span>
<del>$6.000</del>
</p>
<p>
La forma de imprimir "Hola Mundo!" en Python es:
<code class="code">print("Hola Mundo!")</code>
</p>
<p>Hola <u>máquina</u>, cómo andas?</p>
<p>Hola <strong>máquina</strong>, cómo andas?</p>
<p>Hola <em>máquina</em>, cómo andas?</p>
</body>
</html>