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