Download a library of cryptocurrency icons to use in your projects. More than 600 icons are drawn in vector. The library contains all popular cryptocurrency icons and new ones are being added all the time. The library already contains svg and webfont icons.
Buy and connect the library to your project.
download the archive and add the icons.css file and the fonts folder to your project, the folder and the file must be in the same directory. Connect the styles file to your project:
<link rel="stylesheet" href="css/icons.css">
To display the icon, use the construction <span></span> with two required classes: .cryptoicon и .icon-USDT, where USDT is the ticker of the desired cryptocurrency.
<span class="cryptoicon icon-USDT"></span>
Several additional classes for simple icon styling.
Where USDT - the name of the ticker of the desired crypto. Applies the color of the cryptocurrency to the icon or text.
Applies white cryptocurrency to an icon or text.
Applies the black color of cryptocurrency to an icon or text.
<span class="cryptoicon icon-USDT USDT-color"></span>
Preconfigured constructs to display icons nicely. To use them is simple, you need to wrap the icon in a div with certain classes.
<div class="iconbox black-style">
<span class="cryptoicon icon-color-white icon-USDT"></span>
</div>
<div class="iconbox white-style">
<span class="cryptoicon icon-color-black icon-USDT"></span>
</div>
<div class="iconbox USDT-color-bg">
<span class="cryptoicon icon-color-white icon-USDT"></span>
</div>
<div class="iconbox white-style">
<span class="cryptoicon USDT-color icon-USDT"></span>
</div>
<div class="iconbox LTC-color-bg backgroundRomb">
<span class="cryptoicon icon-color-white icon-USDT"></span>
</div>