We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5a4dbe commit 065b8a4Copy full SHA for 065b8a4
1 file changed
README.md
@@ -1,2 +1,32 @@
1
+<!--
2
+You found an page!
3
+Angel Woz Here
4
+
5
+Wait is that an Dreamberd Refrence?
6
+-->
7
8
# HTML-examples
9
There are HTML examples in here, you can fork this to add more examples
10
11
+# Button
12
+Use the button to make a button
13
+```HTML
14
+<button>Sample</button>
15
+```
16
+Add an `onclick`to the code for a JS script
17
18
+<button onclick=Example()>Sample</button>
19
20
21
+The extended sample for the `onclick` command
22
23
+<script>
24
+function Example(){
25
+alert(this is an sample)
26
+}
27
+</script>
28
29
30
+# Style
31
+Use the style to make styles<br>
32
+_Comming Soon..._
0 commit comments