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