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