Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> input:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px white inset !important; } </style> </head> <body> <form action="/form/submit" method="GET"> <div> <label for="name">Name <input type="text" name="name" Id="name" placeholder="Enter Your Name"> </label> </div> <br/> <div> <label for="email">Email <input type="email" name="email" Id="email" placeholder="Enter Your Email"> </label> </div> <br/> <input type="submit" value="Submit"> </form> </body> </html>