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