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