Kumpulan Materi RPL SMK
13 June 2017
Multimedia Pada Halaman Web
Siapa yang tidak tau multimedia? Ya sebagian besar pasti tahu, jenis multimedia ada gambar, video dan audio. Lalu bagaimana cara memasukkan multimedia itu pada halaman HTML?
1. Gambar
a. Standar<img src="contohg.jpg"/>
- hasil
b. Gambar dengan ukuran
<img src="contohg.jpg" width="250" height="150" />
- hasil
c. Gambar dengan bingkai
<img src="contohg.jpg" border="5px" />
- hasil
2. Audio
a. Standar<audio controls> <source src="b.mp3" type="audio/mp3"> </audio>
- hasil
b. Audio autoplay
<audio controls autoplay> <source src="b.mp3" type="audio/mp3"> </audio>
- hasil
3. Video
a. Standar<video controls> <source src="1.mp4" type="video/mp4"> </video>
- hasil
b. Video dengan ukuran
<video controls width="200" height="200"> <source src="1.mp4" type="video/mp4"> </video>
- hasil
c. Video dengan autoplay
<video controls autoplay> <source src="1.mp4" type="video/mp4"> </video>
- hasil
Subscribe to:
Post Comments
(
Atom
)
© Tugas RPL SMK 2016 . Powered by Blogger | Design by Blogger Templates
No comments :
Post a Comment