estoy en el laboratorio de “Construir un Centro de Eventos“ pero en la parte de el elemento me dice que agrege un elemento
I think there is a translation error, the given text should be in English
can you provide the link to the page?
I am in the “Build an Event Center” lab, but in the element section, it tells me to add an element.
It tells me to name it “Upcoming Events,” but the problem is that when I enter that name, it says the name is incorrect. I tried copying and pasting, but it still doesn’t allow me to proceed with the lab.
please share your code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Event Hub</title>
</head>
<body>
<header>
<h1>Event Hub</h1>
<nav>
<ul>
<li><a href="#upcoming-events">Próximos Eventos</a></li>
<li><a href="#past-events">Eventos Pasados</a></li>
</ul>
</nav>
</header>
<main>
<section id="upcoming-events">
<h2>Próximos Eventos</h2>
<article>
<h3>Doom's Day</h3>
<p>Se decidira el destino de la humanidad</p>
</article>
<article>
<h3>Doom's Day</h3>
<p>es el Doom's Day</p>
</article>
</section>
<section id="past-events">
<h2>Eventos Pasados</h2>
<article>
<h3>Año 0</h3>
<p>es el año 0</p>
<img src="" alt="Año 0">
</article>
<article>
<h3>Año 1</h3>
<p>es el año 1</p>
<img src="" alt="cualquier cosa">
</article>
</section>
</main>
</body>
</html>
write Upcoming Events, in English
write Past Events in English
It keeps giving me the same problem.
what is your new code?
I’ve edited your post to improve the readability of the code. When you enter a code block into a forum post, please precede it with three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add the backticks.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Event Hub</title>
</head>
<body>
<header>
<h1>Event Hub</h1>
<nav>
<ul>
<li><a href="#upcoming-events">Próximos Eventos</a></li>
<li><a href="#past-events">Eventos Pasados</a></li>
</ul>
</nav>
</header>
<main>
<section id="upcoming-events">
<h2>Próximos Eventos</h2>
<article>
<h3>Doom's Day</h3>
<p>Se decidira el destino de la humanidad</p>
</article>
<article>
<h3>Doom's Day</h3>
<p>es el Doom's Day</p>
</article>
</section>
<section id="past-events">
<h2>Past Events</h2>
<article>
<h3>Año 0</h3>
<p>es el año 0</p>
<img src="" alt="Año 0">
</article>
<article>
<h3>Año 1</h3>
<p>es el año 1</p>
<img src="" alt="cualquier cosa">
</article>
</section>
</main>
</body>
</html>
this is not Upcoming Events in English
these titles are also not in English, you need to write Upcoming Events and Past Events in English
