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