Devicon
Devicon {{ latestReleaseTagging }}
Devicon is a set of icons representing programming languages, designing, and development tools. You can use it as a font or directly copy/paste the SVG code into your project.
*Please read the legal conditions of using the logos here at the bottom of this header(Super) Quick Setup
First select an icon on the right, then select the version below and copy/paste the code into your project.
-
Font versions
Place this in your header (once per HTML file)
Place this in your body
<i class="devicon-{{selectedIcon.name}}-{{selectedFontIcon}} colored"></i>
*To change the size, change the <i>'s
`font-size`. -
SVG versions
Using <img> element
<img src="{{baseUrl}}icons/{{selectedIcon.name}}/{{selectedIcon.name}}-{{selectedIcon.svg[selectedSvgIndex]}}.svg" />
*To change the size, change the <img>'s
`height`and`width`.Using Pure SVG
<svg viewBox="0 0 128 128">
{{selectedSvgIcon}}
</svg>
*To change the size, change the <svg>'s
`height`and`width`. -