How do you create "build" icons, "download" icons in the description of a project on github?

Asked

Viewed 980 times

4

I wanted to know how to create these "icons" on github...

I’m kind of Noob and I can’t find the right name for it, so I can’t find anything on Google...

I mainly wanted to know how do those who are after the "Donate" that would be the: "60% of the time", "work Every time", "built with"

inserir a descrição da imagem aqui

  • Some of the images found in most of the projects on Github are using the tool Travis CI. Follow the link to what is and how you can use Travis to create icons build passing: https://answall.com/a/197697/122392

1 answer

2


They stay in the README file. If you click on Raw or edit Readme.Md of any project, you can see the code and how an icon was applied.

On your question regarding the badges/icons that are after the "Donate". They are images. You can upload the image to your project or point out a link if hosted elsewhere. Then just use markdown to apply your icon to the file README.Md.

Markdown:

[![texto alternativo](http://i.imgur.com/tXSoThF.png)](http://www.twitter.com/meunome "texto título")

Can also be created as follows:

[![texto alternativo][1.1]][1]

[1]: http://www.twitter.com/meunome
[1.1]: http://i.imgur.com/tXSoThF.png (texto título)

You can also count on a full list of markdown Markup emoji from github. And use :smile:, :laughing: - Complete list here

  • 1

    Oops! It worked right! Thank you very much! Ah, I found the name, is Badges (badges) or even icons.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.