- index.html
HTML
<!DOCTYPE html>
<html>
<head>
<title>Fundamentos de CSS</title>
</head>
<body>
<h1>Resumen del curso</h1>
<p style="color: green;">Etiquetas dobles.</p>
<p>Etiquetas individuales.</p>
<p>Atributos de las etiquetas.</p>
<p>Estilos en línea (integrados).</p>
<p>Estilos externos.</p>
<p>Estilos por clases.</p>
</body>
</html>
Ha ido a otra página
ObjetivosRealizado
0
Usando el atributo style:
- hagan que el texto de los tres primeros párrafos use
color: green;, - y el de los tres últimos,
color: red;.