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