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