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