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