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