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