+ 1
How to include images or audio in my HTML code?
How? https://code.sololearn.com/WjeiHxbKvVbN/?ref=app https://code.sololearn.com/WqaqQgN8bO5p/?ref=app
2 Antworten
+ 1
<img src="imagelink.jpg width="200px" height="200px" alt="error">
This is image code
+ 1
In HTML you should use audio tag to insert audio
<audio src="songname.mp3" controls autoplay loop >
this will insert audio
</audio>