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