Guide HTML5: How do Add HTML5 Button





Adding html5 buttons is quite easy. To add the button correctly;

Place where you want to add;

<button>Text you want in button</button>

You will now be able to add a button anywhere. Don't forget to include your code in html5 code.

For example;

<!DOCTYPE html>
<html>
<body>

<h1>Text Heading</h1>
<p>Text Paragraph.</p>

<button>Click Button</button>

</body>
</html>

Comments