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