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