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