Can we set style to title tag in header in html head as the following. I tried it did not work..
<title style="font-style:italic;"> My Title</title>
Can we set style to title tag in header in html head as the following. I tried it did not work..
<title style="font-style:italic;"> My Title</title>
You can't set style to title tag I had before also tried it. However you can style console (You can use two attributes in console.log).
For example, I log text WARNING! This website is not safe!" and style it I can do this:
console.log("%cWARNING! This website is not safe!%c", "font-color: red; font-weight: bold");
If I change the places of %c it will show text from the first %c to second %c into style.