We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3495bca commit b556d93Copy full SHA for b556d93
account.html
@@ -52,7 +52,10 @@
52
<h1><center><b>My Account</b></center></h1>
53
<h2>Sign in with Scratch and unlock special services on the Coding Hut website.</h2>
54
55
-But it is currently Coming Soon.</body>
+But it is currently Coming Soon.
56
+
57
+<button id="myButton">Click me</button>
58
+</body>
59
</html>
60
61
<style>body {
@@ -230,3 +233,11 @@ <h2>Sign in with Scratch and unlock special services on the Coding Hut website.<
230
233
padding: 0 20px;
231
234
}
232
235
}</style>
236
237
+<script>
238
+ const myButton = document.getElementById("myButton");
239
+ myButton.addEventListener("click", function() {
240
+ // add your JavaScript code here
241
+ alert("Button clicked!");
242
+ });
243
+</script>
0 commit comments