Today we will learn to create a simple html button

Today we will learn to create a simple html button using <button> tag. so let us code.

#keep it in mind that html is not case sensitive.

The <buttun> tag is used to create button and the caption is placed between opening and closing tags.

<!DOCTYPE html>
<html>
<head>
<title>Wellcome</title>
</head>
<body>
<button>click me!</button>
</body>
</html>

Output wiil be!

woooh! you created button in html.

Comments