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