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