Using Free Icons

Font-Awesome is a great free icon library to start with.

Link to include and the syntax.

It's a free set of professional icons, that can add some extra interest to your website.


Example Shown Here:

(1) This is how an icon looks by default.


(2) This is how an icon looks changing the font size and color

    There are many uses for icons, they are versitile, and there are hundreds of them.

Code Box:

HTML:

(1) This is how an icon looks by default.

<i class="fas fa-desktop"></i>


(2) This is how an icon looks changing the font size and color

<i class="fas fa-desktop" style='font-size:35px; color: orange;'></i>




CSS - Include this link somewhere on your page:

<!-- Link to Font Awesome CSS (CDN) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">