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