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