diff --git a/html/html_acessibility/index.html b/html/html_acessibility/index.html index 345026d..86d3748 100644 --- a/html/html_acessibility/index.html +++ b/html/html_acessibility/index.html @@ -88,7 +88,7 @@
@@ -144,7 +144,7 @@

Read the WCAG and learn best practices

diff --git a/html/html_media/404.html b/html/html_media/404.html new file mode 100644 index 0000000..6ce8c99 --- /dev/null +++ b/html/html_media/404.html @@ -0,0 +1,83 @@ +html.org.in | Page Not Found + + + + + + + html.org.in | Page Not Found + + + + + + + + + + +
+
+
+
+
+
+

404

+ + +
+ +
+

+ Look like you're lost +

+ +

the page you are looking for not avaible!

+ + Go to Home +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/html/html_media/index.html b/html/html_media/index.html new file mode 100644 index 0000000..0af9305 --- /dev/null +++ b/html/html_media/index.html @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + HTML Elements | A open source project 💖 + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + +
+ + +
+

Media 📌

+
+

+ Media elements in HTML enrich web content by allowing the integration of audio, video, and external content. They enhance user engagement and interactivity. +

+
+

Audio (Using <audio>)

+

+ The <audio> element enables you to embed audio content like music or podcasts. You can specify the audio source using the "src" attribute and customize playback controls. +
+ Example: +

+
+        <audio src="music.mp3" controls></audio>
+        
+                
+

+

Video (Using <video>)

+

+ The <video> element seamlessly embeds videos into webpages. It supports various formats (e.g., MP4, WebM) for broader compatibility. Customize playback controls, dimensions, and multiple source formats. +
+ Example: +

+
+        <video width="640" height="360" controls>
+            <source src="video.mp4" type="video/mp4">
+            <source src="video.webm" type="video/webm">
+            Your browser does not support the video tag.
+        </video>
+        
+                
+

+

Embedding YouTube Videos

+

+ Use an <iframe> element with the YouTube video URL to easily embed and play YouTube videos on your website. +
+ Example: +

+
+        <iframe width="560" height="315" src="https://www.youtube.com/embed/VIDEO_ID" frameborder="0" allowfullscreen></iframe>
+
+                
+

+

Plugins

+

+ Plugins extend the functionality of web browsers. Common examples include Flash and Java applets, although their usage has decreased over time due to security concerns and evolving web standards. +

+

Enhancing User Experience

+

+ HTML media elements and plugins empower web developers to create interactive, multimedia-rich experiences, making web content more engaging and appealing to users. +

+
+ + + + + +
+ + + + + + + + + + \ No newline at end of file diff --git a/index.html b/index.html index 66c32a5..972cb6b 100644 --- a/index.html +++ b/index.html @@ -372,7 +372,8 @@

HTML Classes

HTML Block And Inline Elements

We are going to talk about the different block and inline elements in html. - Learn More + Learn More

@@ -468,11 +469,24 @@

HTML MathML

HTML Acessibility

Having accessible websites is crucial for inclusivity, legal compliance, a broader audience and - improved user experience + improves user experience Learn More

+
+
+ html logo +
+
+

HTML Media

+

+ HTML media elements, like audio and video, allow you to embed and play audio or video files + on webpages, enhancing the multimedia experience for users. + Learn More +

+
+