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