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