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