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