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