+ 3
Can anyone teach ma how to make buttons in HTML
please
3 ответов
+ 3
<button> Click me</button>
+ 2
you can use input or button tags
input: <input type=“button” value=“x” />
button: <button>x</button>
+ 1
<form name="form1" method="post">
<input type="submit" value="click" id="btn" />
</form>