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