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