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