Use on the webTotal Use [ 3132 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/bb72c5142ae2ae4ca0f9c0653a09871c?family=FontAwesome+Regular" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/bb72c5142ae2ae4ca0f9c0653a09871c?family=FontAwesome+Regular);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "FontAwesome Regular";
src: url("https://db.onlinewebfonts.com/t/bb72c5142ae2ae4ca0f9c0653a09871c.eot");
src: url("https://db.onlinewebfonts.com/t/bb72c5142ae2ae4ca0f9c0653a09871c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/bb72c5142ae2ae4ca0f9c0653a09871c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/bb72c5142ae2ae4ca0f9c0653a09871c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/bb72c5142ae2ae4ca0f9c0653a09871c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/bb72c5142ae2ae4ca0f9c0653a09871c.svg#FontAwesome Regular")format("svg");
}
2CSS rules to specify fonts
font-family: "FontAwesome Regular";