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