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