TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> input:where([type="text"], [type="email"], [type="password"]) { background-color: yellow; border-radius: 8px; padding: 5px; } </style> </head> <body> <form> <input type="text" placeholder="Name"><br><br> <input type="email" placeholder="Email"><br><br> <input type="password" placeholder="Password"> </form> </body> </html>