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