<html>
<body>
<h2>Semantic HTML</h2>
<p>Semantic HTML means using correct HTML elements for their correct purpose as much as possible.</p>
<p>If you need a button, use the button element and not a div:</p>
<button>Click Me</button>
<div>Click Me</div>
<p>It makes much more sense to use a button element: it has more suitable styling than the div, and it is focusable and clickable by default.</p>
</body>
<!-- Mirrored from www.w3schools.com/html/tryit.asp?filename=tryhtml_accessibility_button by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:34:04 GMT -->
</html>