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