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