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