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