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