TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> input:placeholder-shown { background-color: lightgray; } </style> </head> <body> <form> <label>Name:</label> <input type="text" placeholder="Enter your name"><br><br> <input type="text"> <!-- Field without placeholder --> </form> </body> </html>