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