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