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