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