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