TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> label { opacity: 1; transition: opacity 0.3s; } input:placeholder-shown + label { opacity: 0; } </style> </head> <body> <form> <input type="text" placeholder="Enter email"> <label>Email Address</label> </form> </body> </html>