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