<html>
<body>
<h1>The inert Attribute</h1>
<div inert>
<button onclick="alert(42)">Click me</button>
<input type="text">
<a href="https://w3schools.com">W3Schools.com</a>
</div>
<p>The button, the link, and the input field above are disabled because of the inert attribute.</p>
</body>
</html>