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