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