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