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.
Your challenge is to build out this social links profile and get it looking as close to the design as possible. You can use any tools you like to help you complete the challenge. So if you've got something you'd like to practice, feel free to give it a go.
Your users should be able to:
- See hover and focus states for all interactive elements on the page
- Solution URL: Social-Links-Profile
- Live Site URL: github.io/Social-Links-Profile
- Semantic HTML5 markup
- CSS custom properties
- media query
- CSS Web Fonts
cssWeb Fonts using @font-face rule:
@font-face {
font-family: Inter-Regular;
src: url(../fonts/static/Inter-Regular.ttf);
}
.intro-section .profession {
font-family: Inter-Regular;
}
- W3school - This is an amazing website which helped me finally understand CSS Web Fonts. I'd recommend it to anyone still learning this concept.