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