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