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