Lompat ke konten Lompat ke sidebar Lompat ke footer

Tutorial HTML : Elemen Video

enter image description here
Berikut contoh kode untuk memasukkan video ke dalam kode html

<!DOCTYPE  html>
<html  lang="en">
<head>
<meta  charset="UTF-8"  />
<meta  name="viewport"  content="width=device-width, initial-scale=1.0"  />
<title>Galeri Video</title>
</head>
<body>
<h1>Galeri Video</h1>
<hr  />
<video
width="30%"
controls
loop
autoplay
src="video/217115_tiny.mp4"
></video>
<video
width="30%"
controls
loop
autoplay
src="https://cdn.pixabay.com/video/2022/12/18/143419-782363231_tiny.mp4"
></video>
<iframe
width="30%"
height="350"
src="https://www.youtube.com/embed/efjzke6D1YE"
title="Ngaos Abah Mizan - Ta&#39;limul Muta&#39;allim #1"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
</body>
</html>

Posting Komentar untuk "Tutorial HTML : Elemen Video"