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