Learn Typography by Building a Nutrition Label - Step 5

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <title>Nutrition Label</title>
  <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,800" rel="stylesheet">
  <link href="./styles.css" rel="stylesheet">
</head>

<body>
  <h1>Nutrition Facts</h1>
  <p>8 servings per container</p>
  <p>Serving size 2/3 cup (55g)</p>
</body>
</html>
/* file: styles.css */

/* User Editable Region */

body {
  font-family: "Open-Sans", "sans-serif";
}

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 YaBrowser/23.1.1.1138 Yowser/2.5 Safari/537.36

Challenge: Learn Typography by Building a Nutrition Label - Step 5

Link to the challenge:

The task says to enclose the font in quotes, I did everything but nothing works, how then to conclude?

Create a body selector and give it a font-family set to Open Sans with a fallback of sans-serif.

Remember that fonts with spaces in the name must be wrapped in quotes for CSS.

Open Sans should not have a hyphen.
Sans-serif should not have quotation marks.

font-family: "Open-Sans sans-serif";

this doesn’t work either.

No, it won’t work.
Open sans should NOT have a hyphen but SHOULD have quotes.
Sans-serif should NOT have quotes.
The two values should be comma-separated (as they were before).

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.