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