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