Faris Pβ’ 2,810
@FarisPalayi
Posted
@Moh Nice work on this challenge π.
Some of my suggestions are:
- change the footer lists and social media icons to links using the anchor tag(
<a\>
), since those are links to other webpages. - try not to use
<p>
tags as a container or wrapper. Use<div>
or<span>
or any other related semantic elements. Because, p tags are meant for paragraphs. And using them as not paragraphs will mess up things when it comes to accessibility.
That's all from me. Have fun codingπ
Marked as helpful
0