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