0
Why doesn't work:letter-spacing word-spacing
3 Respuestas
+ 3
The first header tag started with <h2> in line 9, but ended with <h3>. That's way the css styles doesn't work.
Try to replace the <h2> with <h3> in line 9.
it will work
+ 2
You have nested h3 and h2 and some other tags. Just write
<h3>Test</h3>
and see the difference.
0
Thanks