Google News
logo
HTML - Interview Questions
Explain the button tag with the help of code.
Button tag lets you create a clickable button in the HTML form on the webpage. 
 
<html>    
 <body>    
  <h2>HTML Button Tag Example</h2>    
  <button name="button" type="button">CLICK HERE</button>
 </body>    
</html>
Advertisement