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