Lo coloque asi tal cual y no avanzo... no se si lo estoy colocando mal

Cuéntanos qué está pasando:
Describe tu problema en detalle aquí.

Tu código hasta el momento


<Hello World>Hello</Hello World>

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36

Desafío: Di hola a los elementos HTML

Enlaza al desafío:

This is not the right way to do it:

<Hello World>Hello</Hello World>

The original was this:

<h1>Hello</h1>

Don’t change the h1 tags. They are telling the web page to show what is between them (and how to show them). For example, I could do:

<h1>I like pizza!</h1>

or

<h1>Antarctica is cold.</h1>

Does that make sense?

You basically need to do that but instead of “I like pizza!” or “Antarctica is cold.”, you want it to say “Hello World”.

But don’t change the h1 tags.

1 Like