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