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