Stuck on one test

Stuck on set the font-size for multiple heading elements and yet I have all the codes right…

If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It 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

Thanks for the feedback, but I have tried that and every time I try the help button I’m told that the site is either down or it moved to another website…

I wasn’t aware of that issue.
You can make a seperate post on the forum in the freeCodeCamp Support section for that issue.

But for this challenge, please give us the challenge link and write your code directly into the forum so we can assist you.

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 (').

How do I access #support?

When you make a new post for the issue concerning the Ask for help button you can place it in the #support category.

If you still need help with this challenge, then you will need to provide your code with the challenge link in a reply to this thread.

It is possible that your code is not running because you have browser extensions interfering with the tests.
But we won’t know that unless we test your code on our ends.

What do you mean by challenge link?

Right now, I have no clue what challenge you are working on.
All I know is that you are working on one of the challenges from the responsive design course.

You need to provide us with that information so we can help you.
Copy the link you find for the current challenge you are working on and paste that into a reply here.

<p> Hello word</p>

Set the font-size for multiple Heading Elements.


<style>
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>

What is the name of this challenge so I can test it on my end?

Never mind I found the challenge.

If this is your full code then it passes on my end.

<style>
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>

The code you have shared works on my end. Please ensure that you have disabled any extensions that interface with the freeCodeCamp website (such as Dark Mode and Ad Blocker), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

Thanks for your response, I’ve tried all the above and nothing seems to work in my favor…:sob:

Well, you can try other browsers.

I am able to pass the test with the code I posted above using Google Chrome without extensions.

You can also just move onto the next challenge.

Alright I got it, would you please recommend some browsers that are compatible…

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.