What is Font Awesome?
Font Awesome is a popular icon set and toolkit used by designers, developers, and content creators. It offers over 30,000 icons in 9 styles, which you can customize using CSS and JavaScript. Here's an example:
Font Awesome is a popular icon set and toolkit used by designers, developers, and content creators. It offers over 30,000 icons in 9 styles, which you can customize using CSS and JavaScript. Here's an example:
<div class="demo-container">
<ul>
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
<li>Fourth Item</li>
</ul>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
.demo-container li {
position: relative;
list-style: none;
padding-left: 30px;
}
.demo-container li::before {
position: absolute;
font-family: 'FontAwesome';
content: "\f138";
left: 0;
}