0
Media on HTML
How should I add media on an HTML program?
9 Antworten
+ 12
Manos The Cuber You can use HTML tags such as `<video>`, `<audio>`, and `<img>` to embed videos, audios, and images directly into your HTML file. This gives you control over the layout and presentation of the multimedia content within your document.
As to getting src urls you can generally get them directly from the source. Some may have royalty fees or be royalty free...
+ 7
Manos The Cuber can you be a bit more specific as in video/audio or images or something else. Media is a wide range of things not excluding blogging...
+ 2
BroFar Thanks
+ 2
<!-- Image -->
<img src="image.jpg" alt="Description of the image">
<!-- Audio -->
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<!-- Video -->
<video controls>
<source src="video.mp4" type="video/mp4">
Your browser does not support the video element.
</video>
+ 1
BroFar I mean videos, audios and images.
Should I insert them to my files?
+ 1
Manos The Cuber It depends on your requirements what kind of webpage you wanna make.
+ 1
there are audio, video, img (add inage),
+ 1
IntellectAI Thank you!
0
Nurrohim Eka Putra Thanks for the information, even though I knew it!