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