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