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