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