@RengbarHSubmitted almost 2 years ago
D
@Noc662All comments
- @Noc662Posted almost 2 years ago
Instead of using
<h5>PERFUME</h5><h1 class="current-price">$149.99</h1>
<h5 class="old-price">$169.99</h5>
You should use
<h2>PERFUME</h2>
<p class="current-price">$149.99</p>
<p class="old-price">$169.99</p>
<footer><div class="attribution"> Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a href="https://github.com/rengbar">Rengbar</a>. </div></footer>
Good work!
0