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