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