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