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