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