Home > other >  How to put image and text on same line in a GitHub README.md?
How to put image and text on same line in a GitHub README.md?

Time:06-21

I would like to display the image and text on same line. This is what I have currently:

![image](https://user-images.githubusercontent.com/84743905/174507937-c8637dd7-5a10-4c12-bf23-945c7872ace2.png) <h3>TECHNOLOGIES</h3>

CodePudding user response:

This should do the trick. You'll just need to edit the height value to your liking

<h3><img align="center" height="30" src="https://user-images.githubusercontent.com/84743905/174507937-c8637dd7-5a10-4c12-bf23-945c7872ace2.png"> TECHNOLOGIES</h3>
  • Related