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