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