Different fonts in different paragraphs | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Different fonts in different paragraphs

How would I be able to apply fonts such as: Hastag, Ammys Handwriting, Halogen, Journal, and JP Hand Slanted to separate paragraphs and headings?

18th Jan 2018, 11:00 PM
Mordred
Mordred - avatar
1 Answer
+ 20
Assign to each element class or id, then specify the values of "font-family" property for each selector. Syntax: selector { font-family: 'name'; } https://www.w3schools.com/cssreF/pr_font_font-family.asp Also, you have to integrate the fonts using the <link> tag inside the <head> tag. Example: <head> <link href="https://fonts.googleapis.com/css?family=Font_Name" rel="stylesheet"> </head> If you don't find links to your fonts, you can choose a font here: https://fonts.google.com/
18th Jan 2018, 11:42 PM
NezhnyjVampir