+ 3
How can we add Colours in the Title?
I want to add colours int the Title of my html file. How can I do that?
3 Respuestas
+ 7
There is no use of trying.
The title of a document will not be displayed on a website.
Unless you mean the heading shown. As in, the <h(x)>tags.
Then it is easy to use CSS
+ 14
background-color:black;
color:black;
+ 2
Colors can not be added to anything within the <head> </head> this is a choice for the browser to choose what color it want it to appear .
while you can chose a color you want for everything within the <body> </body> section.
it is recommended to use CSS for this.
(property:value; = color:red;)