--- id: 615f34ecc1091b4fd5a8a484 title: Step 4 challengeType: 0 dashedName: step-4 --- # --description-- Within your `head` element, add a `link` element with the `rel` attribute set to `stylesheet` and the `href` attribute set to `https://fonts.googleapis.com/css?family=Open+Sans:400,700,800`. This will import the `Open Sans` font family, with the font weight values `400`, `700`, and `800`. Also add a `link` element to link your `styles.css` file. # --hints-- You should have two `link` elements. ```js assert(code.match(/ link?.getAttribute('href') === 'https://fonts.googleapis.com/css?family=Open+Sans:400,700,800')); ``` # --seed-- ## --seed-contents-- ```html --fcc-editable-region-- Nutrition Label

Nutrition Facts

8 servings per container

Serving size 2/3 cup (55g)

--fcc-editable-region-- ``` ```css ```