Creating Button In HTML

 Creating Button In HTML

  • The Button Tag defines the clickable button.
  • Inside Button tag you can add text and tags like <i>, <b>, ,br>, <img>.
  • To create Button we use <button> </button> tag.
  • To make it clickable use type =" button".

Source Code :

<html>
<head>
<title>TJ5 Server</title>
</head>
<body>
<button type="button">
Click Here
</button>
</body>
</html>

Output :


Tejas Dhodi👦
11 July 2022    

Comments