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