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