DHT library issue

Hi, i am getting the follow error when i try to use library DTH.h in online IDE

Coul anyone help me ?

i already import the DTH.h library

Using library DHT in folder: /tmp/262419300/custom/DHT (legacy)

/tmp/262419300/sketch_oct23b/sketch_oct23b.ino:9:1: error: 'DHT' does not name a type

/tmp/262419300/sketch_oct23b/sketch_oct23b.ino: In function 'void setup()':

/tmp/262419300/sketch_oct23b/sketch_oct23b.ino:15:4: error: expected unqualified-id before '.' token

exit status 1

My code:
#include <dht.h>

#define DHTPIN 2 // what digital pin we're connected to

// Uncomment whatever type you're using!
#define DHTTYPE DHT11 // DHT 11
DHT dht(DHTPIN, DHTTYPE);

void setup() {
Serial.begin(9600);
Serial.println("DHTxx test!");

dht.begin();
}

void loop() {

}