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