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