Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@YassineBajdou
Last active April 17, 2019 08:30
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 YassineBajdou/86b82eb8e7a227d0d1c58e5460b513d9 to your computer and use it in GitHub Desktop.
Save YassineBajdou/86b82eb8e7a227d0d1c58e5460b513d9 to your computer and use it in GitHub Desktop.
Hello, World! JS
<!DOCTYPE HTML>
<html>
<head>
<script>
function helloFunction() {
alert("Hello, World!");
}
</script>
</head>
<body>
<p><button onclick="helloFunction()">Click me</button></p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment