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