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