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