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