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