how to add username in box | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
9th Aug 2021, 4:39 AM
Soibam Thomas Singh
2 Respuestas
+ 3
<input type="text" name="username" placeholder="username">
9th Aug 2021, 4:44 AM
Simba
Simba - avatar
+ 1
If u want to make it look cooler: Html: <input placeholder="Username"> Css: ::placeholder { color: blue; font-size: 1.5em; } Or u can use "class" Eg: HTML: <input placeholder="Username" class="Username"> CSS: .Username::placeholder { opacity: 1; }
10th Aug 2021, 5:08 PM
Success
Success - avatar