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