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