Debug Camperbot's Profile Page - Debug Camperbot's Profile Page

Tell us what’s happening:

“Hey, I’m working on this HTML assignment and one of the tests says my paragraph isn’t correct, but I can’t figure out why. Here’s my code — can you spot what I did wrong?”

My name is Camperbot and I love reading and learning new things.

"The test says: 'Your first valid paragraph element should have the text My name is Camperbot and I love reading and learning new things.' It looks right to me — am I missing something?

Your code so far

<!DOCTYPE html>
<html>
  <meta charset="UTF-8">
  <h1>Hello from Camperbot!</h1>
  <p>Welcome!</p>
  <h2>About</h2>
  <p>My name is Camperbot and I love reading and learning new things.</p>
  <h3>Background and Interests</h3>
  <p>I enjoy solving puzzles.</p>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 OPR/118.0.0.0

Challenge Information:

Debug Camperbot’s Profile Page - Debug Camperbot’s Profile Page

check what you had to do with this othe paragraph failing the test is not the first valid p

hi @akebww please create your own topic

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

1 Like

hi @toscano_jazmin if you need help please create your own topic

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Change p welcome to h4

that’s the wrong thing to do, the user stories specifically say “Remove all h1 elements except for the first one.”. Remove does not mean change to a different element.

Olá boa noite,

Para conseguir finalizar a task, só pode haver um h2, você pode alterar o

Welcome!

por um h3 e colocar o h2 no about que vai dar certo.

Exemplo:

Hello from Camperbot!

Welcome!

About

My name is Camperbot and I love reading and learning new things.

Background and Interests

I enjoy solving puzzles.

Hi @Wendrel.santos !

Welcome to the forum!

Your approach would technically pass the tests but it is best not to skip heading levels when possible

In this case, the element with the welcome text needs to be removed completely.

there is an open issue to make things clearer here