Created
January 18, 2018 23:35
-
-
Save godie007/ee34d48049ae8e219862c118d5a0eae3 to your computer and use it in GitHub Desktop.
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> | |
| <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