TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> input:disabled { background-color: lightgray; font-style: italic; color: darkgray; } </style> </head> <body> <form> <label>Enabled Field:</label> <input type="text" placeholder="Enabled"><br><br> <label>Disabled Field:</label> <input type="text" placeholder="Disabled" disabled> </form> </body> </html>