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