Skip to content

Instantly share code, notes, and snippets.

@kirill578
Created June 19, 2017 11:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kirill578/897e4735b49f1187111fce30cd3bfc61 to your computer and use it in GitHub Desktop.
Save kirill578/897e4735b49f1187111fce30cd3bfc61 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<body>
<p>Click the button to display an alert box.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
alert("Hello! I am an alert box!");
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment