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