20 lines
517 B
HTML
20 lines
517 B
HTML
|
<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>
|