Created
March 25, 2017 17:19
-
-
Save sgarcia-dev/411874c905cfd024fbbf24d00ad9e4ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Pagina de Estilos</title> | |
<link rel="stylesheet" href="estilos.css"> | |
</head> | |
<body> | |
<style media="screen"> | |
#embedido { | |
color: green; | |
} | |
</style> | |
<h1>Mi pagina de estilos</h1> | |
<p style="color: blue">Este elemento tiene estilo inline</p> | |
<p id="embedido">Este elemento tiene estilo embedido</p> | |
<p class="externa">Estos elementos tienen estilos desde una hoja de estilo externa</p> | |
<div class="mi-div"> | |
<p>Yo soy hijo directo de mi-div</p> | |
<p>Yo tambien!</p> | |
<div> | |
<p>Este elemento no tiene estilo porque no es hijo directo</p> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment