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