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