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