Skip to content

Instantly share code, notes, and snippets.

@aacassandra
Created May 9, 2020 20:57
Show Gist options
  • Save aacassandra/347f793ee099922cacacc45390cc3ec1 to your computer and use it in GitHub Desktop.
Save aacassandra/347f793ee099922cacacc45390cc3ec1 to your computer and use it in GitHub Desktop.
Belajar HTML: Merubah Ukuran Video (15/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Contoh menambahkan video di web dengan width=750</h3>
<video controls width="750">
<source src="./result.mp4" type="video/mp4">
</video>
<h3>Contoh menambahkan video di web dengan height=350</h3>
<video controls height="350">
<source src="./result.mp4" type="video/mp4">
</video>
<h3>Contoh menambahkan video di web dengan width=350 & height=350</h3>
<video controls width="350" height="350">
<source src="./result.mp4" type="video/mp4">
</video>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment