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