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