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