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