Problem of font-size exercise to accept my solution

Tell us what’s happening:
Hello and thanks for the nice site you have.
Even if a non beginner can learn more from here.
Unfortunatelly I face a problem here:
I solve the problem but my answer does not get accepted and in my inspect tool I see JS errors that point to the fact that the solution is not get passed to be tested.
Here is the exercise:

**My Code**
<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;}
h1 { font-size: 68px; } h2 { font-size: 52px; } h3 { font-size: 40px; } h4 { font-size: 32px; } h5 { font-size: 21px; } h6 { font-size: 14px;}

This is h1 text

This is h2 text

This is h3 text

This is h4 text

This is h5 text
This is h6 text
```
**Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0

Challenge: Set the font-size for Multiple Heading Elements

Link to the challenge:

Hi
This problem comes up all the time with this question. If your code is good but does not pass then you must have add blockers or dark modes enabled in your browser which are causing issues for the test. If you dissable them the test will pass

4 Likes

Oh thank you! Problem solved indeed. :grinning: :grinning:

3 Likes

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