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