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