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