+ 1
How can we use many fonts rather than bold and italic using HTML tags
I want to add Comic sans font for this code https://code.sololearn.com/WwnK6UPXR8K6/?ref=app
3 Réponses
+ 5
font-family: "Comic Sans MS", "Comic Sans", cursive;
+ 3
For different fonts go to
google fonts
choose your font
implement link to the font into the head,above your css link.
Then use fonts using
font-family:font name,alternative font name,default font name;
Alternative fonts and default are optional.But in case your major font dont work browser can use next one.
+ 2
Thank you JaScript