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