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