Prev Demo
CSS3
>
Button Styles
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title></title> <style> .button { background-color: pink; border: none; color: white; padding: 15px 32px; text-align: left; font-size: 20px; margin: 4px 2px; cursor: progress; } </style> </head> <body> <h2>CSS Buttons</h2> <button>Default Button</button> <a href="#" class="button">Link Button</a> <button class="button">Button</button> <input type="button" class="button" value="Input Button"> </body> </html>
Note: We DO NOT save your trial code in our database.
Output