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