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