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