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