Posts

Showing posts from January, 2019
Image
Styling Font- Family in CSS   Steps in Styling Font-Family: In styling font-family, you need to use the NOTEPAD.  Type the following style rule: h1{font-family:"arial black";} h2{font-family:"century gothic",cursive:} p{font-family:"arial black";} #sentence1{font-family:"calibri";} Save this external style sheet as font-family.css Open another NOTEPAD. Type the following: <html> <head> <title>Font Family</title> </head> <body> <h1>This heading will have the font arial black</h1> <h2>This main heading will have the font century gothic</h2> <p>This paragraph wil have the font arial black</p> <p id="sentence1">This Sentence will have the font calibri</p> </body> </html> Apply your font-family.css style sheet file by inser...