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