Last active
July 31, 2017 23:19
-
-
Save basicavisual/26335bb50286f3d04d6d507c4461b893 to your computer and use it in GitHub Desktop.
Ejercicios para los alumnos de clase de aprender HTML
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>Test css</title> | |
</head> | |
<body> | |
<div class="espacio"> | |
<p>Ponme padding y margin para darme espacio de respirar</p> | |
</div> | |
<div class="tipografia"> | |
<p>Pon este div azul, ponle una tipografía sans-serif sacada de Google Fonts y que la tipografía sea blanca</p> | |
</div> | |
<br> | |
<div class="button"> | |
<p>Estílame como un botón. Usa estilos :hover o :active</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment