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