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