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