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