Design comparison
Solution retrospective
Frontend Mentor - Social links profile solution
This is a solution to the Social links profile challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Table of contents
Overview
Links
- Solution URL: solution URL here
- Live Site URL: live site URL here
Built with
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- CSS Grid
- Mobile-first workflow
- Tailwind - CSS Framework
What I learned
<div role="card" class="xs:w-80 xs:mx-auto sm:w-96 border border-black shadow-[10px_10px_0px_0px_hsl(0,0%,7%)]">
/** @type {import('tailwindcss').Config} */ module.exports = { content: ["./*.html"], theme: { extend: { screens: { xs: "375px", }, }, }, plugins: [], };
Useful resources
- Elzero HTML Course - This helped me for Understanding HTML & Make it a piece of Cake for me. I really appreciate he instructor so much.
- Elzero CSS Course - This helped me for Understanding CSS & Make it a piece of Cake for me. I really appreciate he instructor so much.
- Tailwind CSS Course - This is an amazing course which helped me finally understand How Tailwind CSS Works. I'd recommend it to anyone still learning this concept.
Author
Community feedback
- @Ezekiel225Posted 9 months ago
Hello there π @Belly606.
Good job on completing the challenge !
Your project looks really good!
I have a suggestion about your code that might interest you.
There is an very useful browser extension called Perfect Pixel that allow you compare with the design image and thus see the exact dimensions. I recommend it to you.
Use <main> to wrap the main content instead of <div>. π Tags like <div> and <span> are typical examples of non-semantic HTML elements. They serve only as content holders but give no indication as to what type of content they contain or what role that content plays on the page. This tag change does not impact your project visually and makes your HTML code more semantic, improving SEO optimization as well as the accessibility of your project.
I hope this suggestion is useful for future projects.
Other than that, great job!
Happy coding.
Marked as helpful1@Belly606Posted 9 months agoThank You for The Useful Advice and Useful Extension, I Appreciate That You Take from Your Time to Write This Helpful Comment β€
Happy Coding to You Too.@Ezekiel225
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord