Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML Introduction to HTML and CSS (2016) Getting Familiar with HTML and CSS Welcome to HTML and CSS

About <link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">

Dear Friends,

With <link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"> add external font family to html ducument?

What does mean:

href="https://fonts.googleapis.com/css?

family=Muli%7CRoboto:400,300,500,700,900"

rel="stylesheet"

Thank You,

Hi,

About href atribute this link says https://fonts.googleapis.com/css connect current html file with this specific font family?

Dont undestand wich font family is specifed in the link.

Is there any website where you can use for adding external font families to your html document?

About family attribute , suppose Muli%7CRoboto is the font family applied to the specific html document? Dont understand if % means something.

About 400,300,500,700,900, You mean that the coder has applied 5 diffrent weights to this font family, therefore his the option to applied this liked font family to any part his page and also has the option to aplly to any tag font-weight among 400,300,500,700,900.

Example in <p> tag with a specif class named paragraph1 .paragraph1{ font-family:Muli%7CRoboto; font-weight:900; }

But cannot applied for instance font-weight:600;

1 Answer

Fito Lazare
Fito Lazare
4,348 Points

This is a google font that was chosen for your website with 5 different weights. I'm not sure what the question is... Hope that helps.