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