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