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