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