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