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