Skip to content

Commit

Permalink
add contributing steps
Browse files Browse the repository at this point in the history
  • Loading branch information
oyepriyansh authored Oct 3, 2023
1 parent 9454365 commit 50c08b9
Showing 1 changed file with 40 additions and 1 deletion.
41 changes: 40 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,40 @@
# DevProfiles
# DevProfiles
A place to list and shocase your developer skills and profile


# Contribute

1. Fork this Repository
2. add following code to HTML `index.html` just before `<!--Profiles-->` comment

```html
<div class="profile">
<div class="pfp"><img src="[YOUR IMAGE URL]" alt="User Image"></div>
<h3 class="name">Your Name</h3>
<div class="skills">
<span class="skill">[SKILL-1]</span>
<span class="skill">[SKILL-2]</span>
<span class="skill">[SKILL-3]</span>
</div>
<div class="social">
<a href="[YOUR GITHUB URL]" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="[YOUR X/TWITTER URL]" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
<a href="[YOUR LINKEDIN URL]" target="_blank"><i class="fa-brands fa-linkedin-in"></i></a>
</div>
</div>
```
3. Change/Replace the placeholders with your image and profiles urls
- [IMAGE-URL] with your image URL
- [YOUR_NAME] with your name
- [SKILL-1], [SKILL-2], [SKILL-3] with your skills
- [YOUR GITHUB URL], [YOUR X/TWITTER URL] & [YOUR LINKEDIN URL] with your Github, X/Twitter & LinkedIn profile URL repectively.

4. Commit your changes.

5. Create a Pull Request

6. Wait for Merge

# Thank You
Thank you to every contributor of this repository <br>
Show some love by giving a ⭐ to this repository!

0 comments on commit 50c08b9

Please sign in to comment.