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