@SandipanKhanraSubmitted 7 months ago
What specific areas of your project would you like help with?
Proper use of media queries
Proper use of media queries
The suggestions I would give you:
<ul>
<li><a href="#">Facebook</a></li>
...
</ul>
but you did a great job using <ul> for that case
i need some feed back to improve my self. thanks!!!
<div class="container-2">
<p class="content">Puslished 21 Dec 2023</p>
<h1>HTML & CSS foundations</h1>
<p>These languages are the backbone of every website, defining structure, content, and presentation.</p>
</div>
2 . HTML suggestions:
<h1><a href="#">HTML & CSS foundations</a></h1>
// HTML //
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
// CSS reset.css//
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
I hope I can help you with any of that suggestions. I'm open to clarify any doubt and you are welcome to text me
Your solution is very similar to the original design, congrats! I'm a beginner, but I think I could give you some suggestions:
<nav>
<ul>
<li><a href="#">GitHub</a></li>
<li><a href="#">Frontend Mentor</a></li>
<li><a href="#">LinkedIn</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
</ul>
</nav>