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