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