STEP 5 - FORMULARY

Buenas noches, estoy atascado en este paso pero lo hice muchas veces, lo busque e incluso me saque la duda con CHATGPT para verificar si lo estoy haciendo mal pero no me lo esta validando.
La consigna:

Step 5

Nest a self-closing link element within the head element. Give it a rel attribute with value of stylesheet and an href attribute with a value of styles.css.

Codigo mio:

<head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
 <link rel="stylesheet" href="styles.css">
  </head>

Codigo de ChatGPT:

<head>
    <title>Mi página web</title>
    <link rel="stylesheet" href="styles.css" />
  </head>

Es algo básico pero que no me esta saliendo y no entiendo cual es el error. Creo que esta bien hecho

Puedes compartir el link?

Cuando se usan etiqueta de tipo self-closing (sin etiqueta de cierre). es una buena práctica agregar / al final.

<link rel="stylesheet" href="styles.css">
pasaria a ser.
<link rel="stylesheet" href="styles.css" />

freeCodeCamp no lo explica, pero podría llegar a marcar error si no se agrega la diagonal.