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