<button>Submit</button>
<button disabled> Don't submit</button>
<button aria-disabled="true"> Don't submit</button>
<input type="submit" value="Submit">
<input type="image" src="/media/images/button.jpg" alt="Submit">
<input type="reset" value="Reset">
<input type="button" value="Show">
<button commandfor="my-modal" command="show-modal" aria-haspopup="dialog"> Show modal</button><dialog id="my-modal" closedby="any"> <button command="close" commandfor="my-modal">close</button> <h1>My modal</h1></dialog>
<button commandfor="my-content" command="toggle-popover"> Show modal</button><div id="my-content" popover> <h1>My content</h1></div>