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