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