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