Last active
July 3, 2021 07:25
-
-
Save katio/222fe785b8ded13b164b8f0a2e61b2fb to your computer and use it in GitHub Desktop.
Código de video número 13 de la serie Programación desde cero. CSS: reglas, selectores y declaraciones: https://www.youtube.com/watch?v=ORR8-rwXsnE&list=PLZCwI0BeUWWK9xfJY9bO36_DG4QtXJX0o&index=14 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; | |
} | |
</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