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