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