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