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