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