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