Last active
May 13, 2020 13:15
-
-
Save agustinpfs/a50fb09cd1cdc7af4c5bb29e89c58e70 to your computer and use it in GitHub Desktop.
hola mundo con html, css y javascript. Contenido
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
| <!-- NOTA: esto es un comentario y no afectan al funcionamiento de la página --> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Hola Mundo</title> <!-- título de la página --> | |
| </head> | |
| <body> | |
| <main> | |
| <h1 id="titulo">HOLA MUNDO!</h1> <!-- "id="titulo" utilizaremos este id para manipular este elemento --> | |
| <button onclick="cambiaColor('rojo')">ROJO</button> <!-- cuando haga click en este elemento invoco la funcion de javascript llamada "cambiaColor" --> | |
| <button onclick="cambiaColor('amarillo')">AMARILLO</button> <!-- cuando haga click en este elemento invoco la funcion de javascript llamada "cambiaColor" --> | |
| </main> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment