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