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