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