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