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