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