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