CSS - ICONS
Links
// FLATICON
//DOWNLOAD ICONS / COLLECTIONS FOR USE SVG AND PNG
Clear site data F12 to not to be limited !
// FONTAWESOME
//DOWNLOAD PACKAGE
<i class="fas fa-camera"></i> <!-- this icon's 1) style prefix == fas and 2) icon name == camera -->
<i class="fas fa-camera"></i> <!-- using an <i> element to reference the icon -->
<span class="fas fa-camera"></span> <!-- using a <span> element to reference the icon -->
// FONTELLO
//DOWNLOAD CUSTOMIZED PACKAGE, ICONS SELECTED. Customize names and codes
<i class="fas fa-camera"></i> <!-- this icon's 1) style prefix == fas and 2) icon name == camera -->
<i class="fas fa-camera"></i> <!-- using an <i> element to reference the icon -->
<span class="fas fa-camera"></span> <!-- using a <span> element to reference the icon -->
// MATERIALIZE
//DOWNLOAD CUSTOMIZED PACKAGE, CDN, NPM
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<i class="material-icons">add</i>
// GOOGLE ICONS
//DOWNLOAD ICONS / COLLECTIONS FOR USE SVG AND PNG
//BROWSER ICON - IN HTML HEAD
<link rel="shortcut icon" type="image/png" href="../../img/code.png">