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