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