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