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