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