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