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