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