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