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