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