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