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