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