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