Use on the webTotal Use [ 6615 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/c9014859cec51ff7ca1ae755f372bac1?family=Font+Awesome+6+Duotone+Solid" 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/c9014859cec51ff7ca1ae755f372bac1?family=Font+Awesome+6+Duotone+Solid);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Font Awesome 6 Duotone Solid";
src: url("https://db.onlinewebfonts.com/t/c9014859cec51ff7ca1ae755f372bac1.eot");
src: url("https://db.onlinewebfonts.com/t/c9014859cec51ff7ca1ae755f372bac1.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/c9014859cec51ff7ca1ae755f372bac1.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/c9014859cec51ff7ca1ae755f372bac1.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/c9014859cec51ff7ca1ae755f372bac1.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/c9014859cec51ff7ca1ae755f372bac1.svg#Font Awesome 6 Duotone Solid")format("svg");
}
2CSS rules to specify fonts
font-family: "Font Awesome 6 Duotone Solid";