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