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