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