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