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