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