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