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