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