JAYASWAROOP commited on
Commit
6ca9a20
1 Parent(s): 1afc712

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +49 -36
index.html CHANGED
@@ -191,6 +191,28 @@
191
  background-size: 1920px 1080px; /* Set the specific dimensions */
192
  }
193
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  </style>
195
  </head>
196
  <body>
@@ -287,42 +309,33 @@
287
  <div class="modal fade" id="exampleModal3" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
288
  <div class="modal-dialog">
289
 
290
- <div class="modal-content">
291
- <div class="container playlist">
292
- <div class="m-auto">
293
- <button type="button" class="close mb-auto" data-dismiss="modal" aria-label="Close">
294
- <span aria-hidden="true">&times;</span>
295
- </button>
296
- </div>
297
- <div class="m-4">
298
- <h2>Play List</h2>
299
- </div>
300
- <div class="py-4">
301
- <ul class="list-unstyled song-list">
302
- <li class="song-item row">
303
- <img src="song1.jpg" alt="Song 1" class="col-2 col-md-1">
304
- <div class="song-details col-10 col-md-11">
305
- <p class="song-title">Song Title 1</p>
306
- <p class="song-artist">Artist 1</p>
307
- </div>
308
- </li>
309
- <li class="song-item row">
310
- <img src="song2.jpg" alt="Song 2" class="col-2 col-md-1">
311
- <div class="song-details col-10 col-md-11">
312
- <p class="song-title">Song Title 2</p>
313
- <p class="song-artist">Artist 2</p>
314
- </div>
315
- </li>
316
- <li class="song-item row">
317
- <img src="song3.jpg" alt="Song 3" class="col-2 col-md-1">
318
- <div class="song-details col-10 col-md-11">
319
- <p class="song-title">Song Title 3</p>
320
- <p class="song-artist">Artist 3</p>
321
- </div>
322
- </li>
323
- </ul>
324
- </div>
325
- </div>
326
  </div>
327
  </div>
328
  </div>
 
191
  background-size: 1920px 1080px; /* Set the specific dimensions */
192
  }
193
  }
194
+
195
+ main {
196
+ padding: 20px 0;
197
+ }
198
+
199
+ .playlist {
200
+ background-color: #fff;
201
+ border-radius: 5px;
202
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
203
+ padding: 20px;
204
+ }
205
+
206
+ .song1 {
207
+ border-bottom: 1px solid #ccc;
208
+ padding-bottom: 10px;
209
+ margin-bottom: 20px;
210
+ }
211
+
212
+ audio {
213
+ width: 100%;
214
+ margin-top: 10px;
215
+ }
216
  </style>
217
  </head>
218
  <body>
 
309
  <div class="modal fade" id="exampleModal3" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
310
  <div class="modal-dialog">
311
 
312
+ <div class="modal-content">
313
+ <main>
314
+ <div class="container">
315
+ <section class="playlist">
316
+ <h2>Playlist</h2>
317
+ <div class="song1">
318
+ <h3>Song Title 1</h3>
319
+ <p>Artist: Singer Name</p>
320
+ <audio controls>
321
+ <source src="song1.mp3" type="audio/mpeg">
322
+ Your browser does not support the audio element.
323
+ </audio>
324
+ </div>
325
+
326
+ <div class="song1">
327
+ <h3>Song Title 2</h3>
328
+ <p>Artist: Singer Name</p>
329
+ <audio controls>
330
+ <source src="song2.mp3" type="audio/mpeg">
331
+ Your browser does not support the audio element.
332
+ </audio>
333
+ </div>
334
+
335
+ <!-- Add more songs as needed -->
336
+ </section>
337
+ </div>
338
+ </main>
 
 
 
 
 
 
 
 
 
339
  </div>
340
  </div>
341
  </div>