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