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