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