Created
May 9, 2020 20:57
-
-
Save aacassandra/347f793ee099922cacacc45390cc3ec1 to your computer and use it in GitHub Desktop.
Belajar HTML: Merubah Ukuran Video (15/33)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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