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