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