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