-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths2.html
32 lines (29 loc) · 883 Bytes
/
s2.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
<!--
Trabajo a realizar
- Documento HTML que contenga:
- Enlace a CSS donde edite las etiquetas H1, H2, H3 y H4 para ponerlos cada uno de un color diferente.
- Etiquetas:
- H1,H2,H3 y H4 OK
- Lista con varios elementos. OK
- En cada elemento utilizamos las etiquetas sub y sup para hacer polinomios. OK
-->
<!DOCTYPE html>
<html>
<head>
<title>Practica 2</title>
</head>
<body>
<h1 style="color:aqua">El mundo</h1>
<h2 style="color:blueviolet">El mundo2</h1>
<h3 style="color:red">El mundo3</h1>
<h4 style="color:rgb(255, 153, 0)">El mundo4</h1>
<h5 style="color:rgb(0, 255, 21)">El mundo5</h1>
<ul>
<li>x<sup>2</sup>+1y</li>
<li>7x<sup>2</sup>*2</li>
<li>a<sub>3</sub>+a<sub>2</sub>+3</li>
<li>x<sub>4</sub>-x<sub>2</sub>+4</li>
</ul>
</body>
</html>
<!--Yazide Arsalan Chahim-->