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