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