You can create a button in HTML using the `
Here’s a basic example:
```
```
In this example, “Click me” is the text displayed on the button. The `type=“button”` attribute specifies that the HTML element is a button. You can replace “Click me” with any text you want.
Please note that this button won’t do anything when clicked unless you add functionality with JavaScript or link it to a new page or a form.