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