Use on the webTotal Use [ 6787 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/0ee2f581cb4bc0e0135c90bad85e439e?family=F%2AHeart%5EFreaking%5ETastic%2A" 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/0ee2f581cb4bc0e0135c90bad85e439e?family=F%2AHeart%5EFreaking%5ETastic%2A);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "F*Heart^Freaking^Tastic*";
src: url("https://db.onlinewebfonts.com/t/0ee2f581cb4bc0e0135c90bad85e439e.eot");
src: url("https://db.onlinewebfonts.com/t/0ee2f581cb4bc0e0135c90bad85e439e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/0ee2f581cb4bc0e0135c90bad85e439e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/0ee2f581cb4bc0e0135c90bad85e439e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/0ee2f581cb4bc0e0135c90bad85e439e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/0ee2f581cb4bc0e0135c90bad85e439e.svg#F*Heart^Freaking^Tastic*")format("svg");
}
2CSS rules to specify fonts
font-family: "F*Heart^Freaking^Tastic*";