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