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