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