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