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