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