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