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