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