How to make the button wrk in HTML website
Answers
Answered by
1
Answer:
<button>TEXT</button>
Explanation:
Change "TEXT" into your button name
Answered by
4
Answer:
mark as brainliest
Explanation:
The plain HTML way is to put it in a <form> wherein you specify the desired target URL in the action attribute. If necessary, set CSS display: inline; on the form to keep it in the flow with the surrounding text. Instead of <input type="submit"> in above example, you can also use <button type="submit">
Similar questions