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