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