Answers for "font awesome unicode content css"

CSS
0

use font awesome as content in css

<li>
<span class="font-awesome-icons facebook"></span> Login
</li>


.facebook::before {
    font-family: "Font Awesome 5 Brands"; 
	font-weight: 400;
	content: "f09a";
}
Posted by: Guest on June-09-2021
0

how to use font awesome unicode in css

<style>
        .facebook::before {
          font-family: "Font Awesome 5 Brands"; 
          font-weight: 400;
          content: "f09a";
        }
        </style>
Posted by: Guest on July-30-2021

Browse Popular Code Answers by Language