Can someone help me describe this code ....please href="https://fonts.googleapis.com/css?family=Handlee" rel="stylesheet"> | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can someone help me describe this code ....please href="https://fonts.googleapis.com/css?family=Handlee" rel="stylesheet">

27th May 2020, 10:13 AM
Rickie Ben
Rickie Ben - avatar
3 Answers
0
It means that you link fonts named 'Handlee' from GoogleFonts and may use then on your page instead of standard fonts as Arial, Helvetica, Times New Roman etc. Also, some code is missing. it should be <link href="...
27th May 2020, 11:07 PM
BALU
BALU - avatar
0
So if i dont need googlefonts, how will the code look?
28th May 2020, 8:58 AM
Rickie Ben
Rickie Ben - avatar
0
In this case you may just delete this <link rel="stylesheet" href="https://..."> tag as you do not need additional fonts. Also this tag in head we use to link your css files, favicons and so on... Most common case - to link your styles like <link rel="stylesheet" href="./css/styles.css(any path to your css file)">
28th May 2020, 9:07 AM
BALU
BALU - avatar