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