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