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