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