freeCodeCamp/curriculum/challenges/portuguese/14-responsive-web-design-22/learn-typography-by-buildin.../615f378014c2da526a109c81.md

1.0 KiB

id title challengeType dashedName
615f378014c2da526a109c81 Passo 6 0 step-6

--description--

A fonte é um pouco pequena. Crie um seletor html e defina a fonte com o tamanho de 16px.

--hints--

Você deve ter um seletor html.

assert(new __helpers.CSSHelp(document).getStyle('html'));

O seletor html deve ter a propriedade font-size definida como 16px.

assert(new __helpers.CSSHelp(document).getStyle('html')?.fontSize === '16px');

--seed--

--seed-contents--

<!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>
--fcc-editable-region--

--fcc-editable-region--

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