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