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