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