+ 1
Button
syntax for this
3 odpowiedzi
+ 3
this is button submit in form<input type="submit"value="button"/>
and you can use <button onClick="alert('hi')">Button</button>
+ 2
<button>Your Button</button>
These are the opening and closing. This creates a simple button
To hyperlink it to another page use.
<button href=new.html>Your Button </button>
0
you can use the <button></button> tags, or the form tags as follows:
<form>
<input type="button">
</form>
or the same form way but with a submit type button
< form>
<input type="submit">
</form>