TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> input:invalid { border: 2px solid red; } input:valid { border: 2px solid green; } </style> </head> <body> <form> <label>Email:</label> <input type="email" placeholder="Enter your email" required> </form> </body> </html>