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