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