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