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