Skip to content

Instantly share code, notes, and snippets.

@godie007
Created January 18, 2018 23:35
Show Gist options
  • Select an option

  • Save godie007/ee34d48049ae8e219862c118d5a0eae3 to your computer and use it in GitHub Desktop.

Select an option

Save godie007/ee34d48049ae8e219862c118d5a0eae3 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Prueba</title>
<style media="screen">
button#btn-accion {
color: red;
background: black;
padding: 10px 10px;
box-shadow: 2px 3px blue;
}
</style>
</head>
<body>
<div align="center">
<button type="button" id="btn-accion" onclick="hola(1,2)" name="button">Boton</button>
</div>
</body>
<script type="text/javascript">
function hola(a, b) {
console.log("Hola Cesar ", a, b)
}
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment