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