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