DEV Community

Umesh Adabala
Umesh Adabala

Posted on • Updated on

How to create a readme.md on github user profile page

Preview - https://github.com/umeshlab/umeshlab
Hey folks in this post i am going to speak about creating a github readme.md on github user profile page.
Let's get started
Create a new github repo with your username check the create a readme file box
Open the file and click on edit or the pencil icon in the page,
Now enter all the info needed in this file even few html is supported
It is a markdown language file
Now lets start editing it
In the first line
![Header](https://raw.githubusercontent.com/username/repo_name/main/image.png "Header")
in the second line
# Hello, folks! <img src="https://raw.githubusercontent.com/MartinHeinz/MartinHeinz/master/wave.gif" width="30px">
Next you can follow the code

## 🔧 Technologies & Tools
![](https://img.shields.io/badge/OS-Windows-informational?style=flat&logo=windows&logoColor=white&color=2bbc8a)
![](https://img.shields.io/badge/Editor-PyCharm-informational?style=flat&logo=pycharm&logoColor=white&color=2bbc8a)
![](https://img.shields.io/badge/Code-Python-informational?style=flat&logo=python&logoColor=white&color=2bbc8a)
## &#x1f4c8; GitHub Stats

<a href="https://github.com/umeshlab/umeshlab">
  <img align="center" src="https://github-readme-stats.vercel.app/api/top-langs/?username=umeshlab&hide=javascript&title_color=ffffff&text_color=c9cacc&icon_color=2bbc8a&bg_color=1d1f21&langs_count=3" />
</a>
<a href="https://github.com/umeshlab/umeshlab">
  <img align="center" src="https://github-readme-stats.vercel.app/api?username=umeshlab&show_icons=true&line_height=27&count_private=true&title_color=ffffff&text_color=c9cacc&icon_color=2bbc8a&bg_color=1d1f21" alt=" GitHub Stats" />
</a>

<a href="https://github.com/umeshlab/speedtest_GUI">
  <img align="center" src="https://github-readme-stats.vercel.app/api/pin/?username=umeshlab&repo=speedtest_GUI&title_color=ffffff&text_color=c9cacc&icon_color=2bbc8a&bg_color=1d1f21" />
</a>


<a href="https://github.com/umeshlab/pyapp">
  <img align="center" src="https://github-readme-stats.vercel.app/api/pin/?username=umeshlab&repo=pyapp&title_color=ffffff&text_color=c9cacc&icon_color=2bbc8a&bg_color=1d1f21" />
</a>    

Enter fullscreen mode Exit fullscreen mode

Change the repo names and usernames by checking the code properly
You can add more like that.


My readme file

![Header](https://raw.githubusercontent.com/umeshlab/umeshlab/main/umi.png "Header")
# Hello, folks! <img src="https://raw.githubusercontent.com/MartinHeinz/MartinHeinz/master/wave.gif" width="30px">
My name is Umesh Adabala and I'm a software developer. I'm from India, living in Bangalore 
<br>
An 14 years Indian python devloper. Who wants to serve many projects to this community.
## 🔧 Technologies & Tools
![](https://img.shields.io/badge/OS-Windows-informational?style=flat&logo=windows&logoColor=white&color=2bbc8a)
![](https://img.shields.io/badge/Editor-PyCharm-informational?style=flat&logo=pycharm&logoColor=white&color=2bbc8a)
![](https://img.shields.io/badge/Code-Python-informational?style=flat&logo=python&logoColor=white&color=2bbc8a)
## &#x1f4c8; GitHub Stats

<a href="https://github.com/umeshlab/umeshlab">
  <img align="center" src="https://github-readme-stats.vercel.app/api/top-langs/?username=umeshlab&hide=javascript&title_color=ffffff&text_color=c9cacc&icon_color=2bbc8a&bg_color=1d1f21&langs_count=3" />
</a>
<a href="https://github.com/umeshlab/umeshlab">
  <img align="center" src="https://github-readme-stats.vercel.app/api?username=umeshlab&show_icons=true&line_height=27&count_private=true&title_color=ffffff&text_color=c9cacc&icon_color=2bbc8a&bg_color=1d1f21" alt=" GitHub Stats" />
</a>

<a href="https://github.com/umeshlab/speedtest_GUI">
  <img align="center" src="https://github-readme-stats.vercel.app/api/pin/?username=umeshlab&repo=speedtest_GUI&title_color=ffffff&text_color=c9cacc&icon_color=2bbc8a&bg_color=1d1f21" />
</a>


<a href="https://github.com/umeshlab/pyapp">
  <img align="center" src="https://github-readme-stats.vercel.app/api/pin/?username=umeshlab&repo=pyapp&title_color=ffffff&text_color=c9cacc&icon_color=2bbc8a&bg_color=1d1f21" />
</a>    

Enter fullscreen mode Exit fullscreen mode



Thanks for reading and spending your valuable time on this post.

Top comments (0)