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