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