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