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