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