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