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