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