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