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