description
0
stars
0
forks
source link
```
<button type="button">Click me!</button>
```
```
<button type="submit">Submit</button>
```
HTML:
```
<button type="button" class="my-button">Click me!</button>
```
CSS:
```
.my-button {
background-color: blue;
color: white;
font-size: 16px;
border: none;
padding: 10px 20px;
cursor: pointer;
}
```
#1
Open
Redin8 opened 1 year ago