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