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