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