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