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