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