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