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