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