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