+ 1
How to create a button?
BUTTON
4 odpowiedzi
+ 4
also u can use button tag available in html
<button onclick="some_function()"> Click Me </button>
+ 2
<input type="button" id="something" value="Click me" >
+ 1
<input type="button" id="#" value="b1">
or
<button onclick="fun1()">clickme</button>
0
<input type="button" id="demo" value="click">press </button> And voila your button is ready. I have taken demo in id. you can take anything it is upto you only.