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