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