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