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