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