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