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