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