Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> input { width: 90%; padding: 10px; margin: 5px; outline: none; } input::placeholder { color: #1c87c9; opacity: 1; } input:placeholder-shown { border: 1px solid #095484; } </style> </head> <body> <form action="/action_page.php"> Vorname: <input type="text" name="firstname" placeholder="John"><br><br> Nachname: <input type="text" name="lastname" placeholder="Lennon"><br><br> E-Mail-Adresse: <input type="email" name="email" placeholder="YourEmail@gmail.com"> </form> </body> </html>