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