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