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