S
S
SMAILAIMEN2015-10-12 11:50:59
HTML
SMAILAIMEN, 2015-10-12 11:50:59

How to make so much audio in html?

How to make as many shapes with multiple floats as shown in the picture.
ac61cf0ccc4d8e8158fcad50f1623c.png

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Ivan Chistov, 2015-10-12
@SmaiLaimen

<audio src="track1.mp3" controls></audio>
<audio src="track2.mp3" controls></audio>
<audio src="track3.mp3" controls></audio>
<audio src="track4.mp3" controls></audio>

It is advisable to use:
<audio controls> 
  <source src="track1.ogg"> 
  <source src="track1.mp3"> 
</audio>
<audio controls> 
  <source src="track2.ogg"> 
  <source src="track2.mp3"> 
</audio>

If you are already directly interested in the modes, then everything is described in the answer above

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question