oldoc63 / learningHTML

Learning HTML with Codecademy and GitHub
0 stars 0 forks source link

Audio tag added #103 #104

Closed oldoc63 closed 3 years ago

oldoc63 commented 3 years ago

There are two ways you can approach this task. The first way is by using src= as shown below:

<audio controls src="song.mp3">
</audio>

The second way is by using as shown below:

<audio controls>
  <source src="song.mp3">
</audio>