Skip to content

udaygiri/Social-Links-Profile-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Social Links Profile - Udaygiri

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

The challenge

Users should be able to see hover and focus states for all interactive elements on the page.

Screenshot

ScreenShot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • CSS Grid
  • Mobile-first workflow

What I learned

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);
}

Continued development

In future projects, I aim to continue improving my skills in responsive design and CSS techniques.

Useful resources

  • MDN Web Docs - A comprehensive resource for HTML, CSS, and JavaScript.
  • Frontend Mentor - A great platform for practicing frontend development by building real projects.

Author

Acknowledgments

I would like to thank Frontend Mentor for providing this challenge and the supportive community for feedback and guidance.