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