Can someone help with this error code

Arduino: 1.8.10 (Windows 10), Board: "Arduino/Genuino Uno"

C:\Users\jonds\AppData\Local\Temp\arduino_modified_sketch_222910\sketch_oct06a.ino: In function 'void loop()':

sketch_oct06a:19:13: error: 'DHT' was not declared in this scope

int chk = DHT.read11(DHT11_PIN);

^~~

Multiple libraries were found for "SimpleDHT.h"
Used: C:\Users\jonds\OneDrive\Desktop\arduino-1.8.10\libraries\SimpleDHT-1.0.12
Multiple libraries were found for "LiquidCrystal.h"
Used: C:\Users\jonds\OneDrive\Desktop\arduino-1.8.10\libraries\LiquidCrystal
exit status 1
'DHT' was not declared in this scope

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

The code what i use
#include <SimpleDHT.h>

#include <LiquidCrystal.h>

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
// Uncomment whatever type you're using!
#define DHTTYPE DHT11 // DHT 11
//#define DHTTYPE DHT22 // DHT 22 (AM2302)

#define DHT11_PIN 7

void setup(){
lcd.begin(16, 2);
}

void loop()
{
int chk = DHT.read11(DHT11_PIN);
lcd.setCursor(0,0);
lcd.print("Temp: ");
lcd.print(DHT.temperature);
lcd.print((char)223);
lcd.print("C");
lcd.setCursor(0,1);
lcd.print("Humidity: ");
lcd.print(DHT.humidity);
lcd.print("%");
delay(1000);
}

#include "DHT.h"

. . .

// Initialize DHT sensor.
// Note that older versions of this library took an optional third parameter to
// tweak the timings for faster processors. This parameter is no longer needed
// as the current DHT reading algorithm adjusts itself to work on faster procs.
DHT dht(DHTPIN, DHTTYPE);

You will need to create your object similar to the line above but with your variables.

It worked but i have another issue (sorry for that many questions but i am newbie in programming just bought this kit and started to doing this )

Arduino: 1.8.10 (Windows 10), Board: "Arduino/Genuino Uno"

Multiple libraries were found for "DHT.h"
In file included from C:\Users\jonds\OneDrive\Desktop\arduino-1.8.10\libraries\DHT-sensor-library-master\DHT_U.cpp:15:0:

C:\Users\jonds\OneDrive\Desktop\arduino-1.8.10\libraries\DHT-sensor-library-master\DHT_U.h:36:10: fatal error: Adafruit_Sensor.h: No such file or directory

#include <Adafruit_Sensor.h>

^~~~~~~~~~~~~~~~~~~

compilation terminated.

Used: C:\Users\jonds\OneDrive\Desktop\arduino-1.8.10\libraries\DHT-sensor-library-master
Multiple libraries were found for "LiquidCrystal.h"
Used: C:\Users\jonds\OneDrive\Desktop\arduino-1.8.10\libraries\LiquidCrystal
exit status 1
Error compiling for board Arduino/Genuino Uno.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.