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