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