Intro_basicos_HTML_CSS/CursoHTML/43_Herencia.html

20 lines
517 B
HTML
Raw Normal View History

2020-11-18 01:21:49 -03:00
<html>
<head>
<meta charset="UTF-8">
<title>Herencia de Selectores</title>
<link rel="stylesheet" type="text/css" href="css/herencia.css">
</head>
<body>
<div>
<p>Párrafo 1 dentro del div.</p>
<p>Párrafo 2 dentro del div.</p>
<span><p>Parrafo 3 dentro del div.</p></span>
</div>
<p>Párrafo 4 fuera del div.</p>
<p>Párrafo 5 fuera del div.</p>
</body>
<br>
<hr>
<a href="42_Agrupar_Selectores.html"><--Anterior</a>
<a href="44_Cursor.html">Siguiente--></a>
</html>