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