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