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