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