Last active
July 16, 2024 03:54
-
-
Save bluishoul/d390f0981a8a1100bdc2d7f6a3a58935 to your computer and use it in GitHub Desktop.
HTML Demo
This file contains 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
h1 { color: green; cursor: pointer; font-family: monospace;} | |
h1:hover { text-decoration: underline; } |
This file contains 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
<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> |
This file contains 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
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