Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> body { padding: 20px; } label { font-size: 20px; font-weight: 700; color: #1c87c9; } input { width: 50%; height: 28px; padding: 4px 10px; border: 1px solid #666; background: #cce6ff; color: #1c87c9; font-size: 16px; } </style> </head> <body> <form> <label>Votre Prénom:</label> <input id="User" name="Name" type="text"/> </form> </body> </html>