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