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