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