how to add username in box | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
9th Aug 2021, 4:39 AM
Soibam Thomas Singh
2 Answers
+ 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