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