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