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