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