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