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