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