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