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