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