I have the right css for the .box class I believe but for the h2 css I’m stuck. I’m unable to make the star show up on the right side as a repeating pattern. Also I’m not sure on how to make sure the text doesn’t overlay the image.
You can use an absolute URLs to display the stars in your fiddle like this: background-image: url(https://github.com/mdn/css-examples/raw/master/learn/tasks/backgrounds/star.png);
If you want to use an image twice, you also need to put it twice in your CSS: background-image: url(star.png), url(star.png);
Alternatively you can use the background shorthand to put everything in one property: background: <image> <repeat-style> <position>, <image> <repeat-style> <position>;
Give your box an appropriate width (if you work in the fiddle)
At the end, add appropriate padding to h2 (all four sides) so that nothing overlaps and three stars are visible on the right
I hope those hints help you to improve your example. Feel free to ask more questions. I’m happy to help you