- 2
how to add username in box
2 Réponses
+ 3
<input type="text" name="username" placeholder="username">
+ 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;
}