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