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