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