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