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