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