Skip to content

Commit 065b8a4

Browse files
authored
README.md is almost done
1 parent e5a4dbe commit 065b8a4

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,32 @@
1+
<!--
2+
You found an page!
3+
Angel Woz Here
4+
5+
Wait is that an Dreamberd Refrence?
6+
-->
7+
18
# HTML-examples
29
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+
```HTML
18+
<button onclick=Example()>Sample</button>
19+
```
20+
21+
The extended sample for the `onclick` command
22+
```HTML
23+
<script>
24+
function Example(){
25+
alert(this is an sample)
26+
}
27+
</script>
28+
<button onclick=Example()>Sample</button>
29+
```
30+
# Style
31+
Use the style to make styles<br>
32+
_Comming Soon..._

0 commit comments

Comments
 (0)