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