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
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
- for example:
https://indogithubers-badge.vercel.app/badge?username=depapp&style=flat-square&color=D3EB30
it will generate this kind of badge
- 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
andlink
html tag
<a href="https://indogithubers.vercel.app/">
<img src="https://indogithubers-badge.vercel.app/badge?username=depapp" alt="IndoGitHubers Badge">
</a>