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