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