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