I want to display my input placeholder in different fonts bold and normal
<input placeholder="Type Here to search">
Type Here to search
as it is not possible to add spans between place holders i have to use css
::placeholder{
content: 'Type Here';
font-weight: bold;
}
This doesn't work is there any way to make it possible.