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