How to apply cursive font-style ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to apply cursive font-style ?

I tried to do it but it always came in normal text I used code <p;font-style:cursive>text</p> please help me solve this problem i so badly wanna use cursive font style

14th Sep 2021, 11:29 AM
Shifa Shaikh
Shifa Shaikh - avatar
4 Answers
+ 2
You could style it as "italic". Or use em or i tag <em>Emphasis</em> <i>Italic</i>
14th Sep 2021, 12:02 PM
Lisa
Lisa - avatar
+ 2
if it is inline styling use -<p style="font-family: 'cursive' , sans-serif"></p> if it is external css or internal css use p { font-family: 'cursive' , sans-serif; }
14th Sep 2021, 11:53 AM
jude miracle
jude miracle - avatar
+ 2
Thanks Lisa and jude miracle 😁
14th Sep 2021, 12:15 PM
Shifa Shaikh
Shifa Shaikh - avatar
+ 2
Shifa Shaikh if u wanna more stylish font then search google fonts and import in your code
14th Sep 2021, 2:33 PM
A S Raghuvanshi
A S Raghuvanshi - avatar