audio ko ise par 1 and 2 Mein Karte Hain

 <section>

  <h2>Insta Millionaire Ep 1</h2>

  <audio controls autoplay>

    <source src="https://drive.google.com/uc?export=download&id=1C4xLCUwJX3_v8x630KnrSYU7atJjNkH1" type="audio/mpeg">

    Your browser does not support the audio element.

  </audio>

</section>

```


To add more parts, you can duplicate that code and change the source URL accordingly. Here's an example for Bhagwan Audio Bhag 2:


```

<section>

  <h2>Insta Millionaire Ep2</h2>

  <audio controls autoplay>

    <source src="https://drive.google.com/uc?export=download&id=1EilVUheV7DwoPO5yrDqgvEi-sJ0ncpYs" type="audio/mpeg">

    Your browser does not support the audio element.

  </audio>

</section>

```


Remember to replace `YOUR_AUDIO_FILE_ID` in the source URL with the corresponding ID of the audio file from Google Drive for each part.


Repeat this process for each additional part of the audio you want to upload, keeping the `<section>` and `<h2>` tags to separate and label each part.

Post a Comment

0 Comments