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