Last active
July 3, 2021 07:23
-
-
Save katio/3f485cb55097c7a63a0a46669fa78ccc to your computer and use it in GitHub Desktop.
Código de video número 17 de la serie Programación desde cero. CSS: estilos de fondo, mouse y herramientas de desarrollo: https://www.youtube.com/watch?v=yFlSyWihha4&list=PLZCwI0BeUWWK9xfJY9bO36_DG4QtXJX0o&index=17 https://twitter.com/abrupto
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></head> | |
<body> | |
<style> | |
body { | |
color: green; | |
font-family: arial; | |
} | |
#dado { | |
font-size: 85px; | |
} | |
img { | |
display:block; | |
} | |
button { | |
margin: 10px; | |
padding: 10px; | |
background-color: green; | |
color: white; | |
cursor: pointer; | |
} | |
</style> | |
<h1>Dado</h1> | |
<img src="https://i.imgur.com/AYxOJot.png" alt="Trébol de 4 hojas"> | |
<button id="boton">Lanzar dado</button> | |
<div id="dado"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment