Skip to content

Instantly share code, notes, and snippets.

@bluishoul
Last active July 16, 2024 03:54
Show Gist options
  • Save bluishoul/d390f0981a8a1100bdc2d7f6a3a58935 to your computer and use it in GitHub Desktop.
Save bluishoul/d390f0981a8a1100bdc2d7f6a3a58935 to your computer and use it in GitHub Desktop.
HTML Demo
h1 { color: green; cursor: pointer; font-family: monospace;}
h1:hover { text-decoration: underline; }
<h1>Hello RunJS(from <a href="https://gist.github.com/bluishoul/d390f0981a8a1100bdc2d7f6a3a58935" target="_blank">Gist</a>)!!!</h1>
<script>
const sayHello = () => { console.log("Hello RunJS!"); };
sayHello();
</script>
document.querySelector("h1").addEventListener("click", () => {
console.log("Hello World!");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment