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