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