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