Skip to content

Instantly share code, notes, and snippets.

@katio
Last active July 3, 2021 07:25
Show Gist options
  • Save katio/222fe785b8ded13b164b8f0a2e61b2fb to your computer and use it in GitHub Desktop.
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
<!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