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