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