Esp8266+dht11+blynk

friends how to add a sensor to this code DHT11
code

#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
 
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "";
 
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "";
char pass[] = "";
 
  int relay1 = 16;  // D0 pin 
  int relay2 = 5;  // D1 pin 
  int relay3 = 4;   // D2 pin 
  int relay4 = 0;   // D3 pin 
  int relay5 = 2;  // D4 pin 
  int relay6 = 14;  // D5 pin 
  int relay7 = 12;   // D6 pin 
  int relay8 = 13;   // D7 pin
  int relay9 = 15;   // D8 pin 
 
void setup()
{
  // Debug console
  Serial.begin(115200);
 
  pinMode(relay1,OUTPUT);
  pinMode(relay2,OUTPUT);
  pinMode(relay3,OUTPUT);
  pinMode(relay4,OUTPUT);
  pinMode(relay5,OUTPUT);
  pinMode(relay6,OUTPUT);
  pinMode(relay7,OUTPUT);
  pinMode(relay8,OUTPUT);
  pinMode(relay9,OUTPUT);
 
  digitalWrite(relay1, HIGH);
  digitalWrite(relay2, HIGH);
  digitalWrite(relay3, HIGH);
  digitalWrite(relay4, HIGH);
  digitalWrite(relay5, HIGH);
  digitalWrite(relay6, HIGH);
  digitalWrite(relay7, HIGH);
  digitalWrite(relay8, HIGH);
  digitalWrite(relay9, HIGH);
 
  Blynk.begin(auth, ssid, pass);
  // You can also specify server:
  //Blynk.begin(auth, ssid, pass, "blynk-cloud.com", 80);
  //Blynk.begin(auth, ssid, pass, IPAddress(192,168,1,100), 8080);
}
 
void loop()
{
  Blynk.run();
}

@hesler please edit your post, using the pencil icon at the bottom, and add triple backticks at the beginning and end of your code so that it displays correctly.
Triple backticks look like this:
```

Pete.

You’ve edited the post, but used the wrong characters, despite me giving you triple backticks to copy/paste.
Please edit your post again and use the correct characters, otherwise your unformatted code will be deleted.

Pete.

Okay. Help me