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