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