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