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