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