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