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