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