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