TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> button:disabled { background-color: lightgray; text-decoration: line-through; color: gray; cursor: not-allowed; } </style> </head> <body> <button>Enabled Button</button> <button disabled>Disabled Button</button> </body> </html>