if something || (or) something not working , also need a timer &&??

ok i changed my if else statement around and it works

 if (t > 25 || h > 70) {
    digitalWrite(Relay1, LOW);
  }
  else if (t < 25 || h < 70) {
    digitalWrite(Relay1, HIGH);
  }