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