No logro pasar esta prueba y esta bien el código creo

La propiedad font-size se usa para especificar que tan grande es el texto en un elemento dado. Esta regla se puede utilizar para varios elementos para crear coherencia visual del texto en una página. En este desafío, establecerá los valores para todas las etiquetas h1 a h6 para equilibrar los tamaños de los títulos.

–instructions–

En las etiquetas style , establece el font-size de:

  • Etiqueta h1 a 68px.
  • Etiqueta h2 a 52px.
  • Etiqueta h3 a 40px.
  • Etiqueta h4 a 32px.
  • Etiqueta h5 a 21px.
  • Etiqueta h6 a 14px.
h1 {
    font-size: 68px;
  }
  h2 {
    font-size: 52px;
  }
  h3 {
    font-size: 40px;
  }
  h4 {
    font-size: 32px;
  }
  h5 {
    font-size: 21px;
  }
  h6 {
    font-size: 14px;
  }
</style>
<h1>This is h1 text</h1>
<h2>This is h2 text</h2>
<h3>This is h3 text</h3>
<h4>This is h4 text</h4>
<h5>This is h5 text</h5>
<h6>This is h6 text</h6>

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).


It would help if you provide a link to the challange you are working on.

Is your browser zoom set to 100%? Are you using any extensions or settings that modify your CSS?

¿@Nan28 Sigues teniendo dificultad con este desafío?

Falta la etiqueta de abertura