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