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