Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added 00-HTML-CSS-basics/assets/blues-song.mp3
Binary file not shown.
Binary file added 00-HTML-CSS-basics/assets/dan-gold-unsplash.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions 00-HTML-CSS-basics/multimedia.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

<!DOCTYPE html>
<html>
<head>
<title>Multimedia stuffs</title>
</head>
<body>

<img src="assets/dan-gold-unsplash.jpg" width="720" height="480" alt="planisphere">
<iframe width="720" height="480" src="https://www.youtube.com/embed/txq4oYz1Bxg"callowfullscreen>

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Así como incluiste el <audio /> deberías haber incluido el video. No usando un iframe

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, claro, seria con tag , gracias

</iframe>

<audio controls="controls">
<source src="Assets/blues-song.mp3" type="audio/mpeg">
</audio>

</body>
</html>