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