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