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