Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 1.92 KB

BADGE_USAGE.md

File metadata and controls

52 lines (37 loc) · 1.92 KB

IndoGitHubers-badge

❔ how to use IndoGitHubers-badge

you only need to add your GitHub username to the username query params (replace the yourUsername with yours)

https://indogithubers-badge.vercel.app/badge?username=yourUsername

for example

https://indogithubers-badge.vercel.app/badge?username=depapp

it will generate this kind of badge

default

⚙️ customize your badge

you can modify the badge style using style query params and modify the badge color using color query params.

style values that you can use are social, plastic, flat, flat-square, for-the-badge.

color values that you can use, such as red, yellow, 00FF00, D3EB30, etc

  • for example: https://indogithubers-badge.vercel.app/badge?username=depapp&style=plastic&color=blue it will generate this kind of badge

plastic-blue

  • for example: https://indogithubers-badge.vercel.app/badge?username=depapp&style=flat-square&color=D3EB30 it will generate this kind of badge

flat-square_D3EB30

❔ how to embed IndoGitHubers Rank

  • using markdown
![IndoGitHubers-badge](https://indogithubers-badge.vercel.app/badge?username=depapp)
  • using image html tag
  <img src="https://indogithubers-badge.vercel.app/badge?username=depapp" alt="IndoGitHubers Badge">
  • using image and link html tag
  <a href="https://indogithubers.vercel.app/">
    <img src="https://indogithubers-badge.vercel.app/badge?username=depapp" alt="IndoGitHubers Badge">
  </a>