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