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