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