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