There are HTML examples in here, you can fork this to add more examples
Use the button to make a button
<button>Sample</button>Add an onclickto the code for a JS script
<button onclick=Example()>Sample</button>The extended sample for the onclick command
<script>
function Example(){
alert(this is an sample)
}
</script>
<button onclick=Example()>Sample</button>Use the style to make styles
Comming Soon...