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