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