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