Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Last active May 13, 2020 13:15
Show Gist options
  • Select an option

  • Save agustinpfs/a50fb09cd1cdc7af4c5bb29e89c58e70 to your computer and use it in GitHub Desktop.

Select an option

Save agustinpfs/a50fb09cd1cdc7af4c5bb29e89c58e70 to your computer and use it in GitHub Desktop.
hola mundo con html, css y javascript. Contenido
<!-- 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