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