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