font awesome social

Solutions on MaxInterview for font awesome social by the best coders in the world

showing results for - "font awesome social"
Kevin
23 Oct 2018
1CONTENT BEFORE/AFTER CSS
2<style>
3.class:before {
4    content: '\f16d'; /* Instagram */
5    content: '\f09a'; /* Facebook */
6    content: '\f099'; /* Twitter */
7    content: '\f1e8'; /* Twitch*/
8    content: '\e07b'; /* TikTok */
9
10    font-family: 'Font Awesome 5 Brands';
11}
12</style>
13
14EMBED ICON HTML
15<i class="fab fa-instagram"></i>
16<i class="fab fa-facebook"></i>
17<i class="fab fa-twitter"></i>
18<i class="fab fa-twitch"></i>
19<i class="fab fa-tiktok"></i>
20
21
22REMEMBER TO IMPORT FONT AWESOME:
23...add this lines to head
24<link rel="stylesheet"
25      href="https://use.fontawesome.com/releases/v5.13.0/css/all.css"
26      integrity="sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V"
27      crossorigin="anonymous" />