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