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