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.
Users should be able to see hover and focus states for all interactive elements on the page.
- Solution URL: (https://github.com/udaygiri/Social-Links-Profile-)
- Live Site URL: (https://socialprofileudaygiri.vercel.app/)
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- CSS Grid
- Mobile-first workflow
During this project, I learned how to structure a social links profile using HTML and style it with CSS. Here are some snippets of code I'm proud of:
<div class="name">
Udaygiri D. Aparnathi
</div>
.link a {
display: flex;
width: 15rem; /* Adjust the width as needed */
height: 1.4rem; /* Adjust the height as needed */
padding: .5rem;
border-radius: 10px;
align-items: center;
justify-content: center;
background-color: var(--grey);
text-decoration: none;
font-size: 14px;
font-family: var(--fontf);
font-weight: 600;
color: var(--white);
}
In future projects, I aim to continue improving my skills in responsive design and CSS techniques.
- MDN Web Docs - A comprehensive resource for HTML, CSS, and JavaScript.
- Frontend Mentor - A great platform for practicing frontend development by building real projects.
I would like to thank Frontend Mentor for providing this challenge and the supportive community for feedback and guidance.