HTML mein media tags ka istemal audio aur video content ko web page par embed karne ke liye hota hai.
<audio> tag se aap web page par audio file daal sakte hain. Iske kuch zaroori attributes hain:
controls: Yeh audio player par play, pause, aur volume controls dikhata hai.autoplay: Jab page load hota hai to audio apne aap shuru ho jati hai.loop: Audio khatam hone par phir se shuru ho jati hai.
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<video> tag se aap web page par video file daal sakte hain. Iske attributes <audio> jaise hi hain, bas isme width aur height attributes bhi hote hain.
controls: Play, pause, volume, etc. controls dikhata hai.autoplay: Video apne aap shuru ho jati hai.loop: Video khatam hone par phir se chalti hai.
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
Ek *multipage website* ek se zyada HTML pages se banti hai, jo <a> (anchor) tags ke zariye aapas mein jude hote hain. Aapki yeh website ek multipage website ka ek behtareen example hai.
index.html, about.html, ya aapke case mein html-main.html.Apni website ko internet par live karne ki process ko *deployment* kehte hain. Iske kuch mukhya steps hain:
index.html* ya aapke case mein *webdev-intro.html* hona chahiye.GitHub Pages ek free aur aasan tareeka hai jisse aap apni static website (jisme sirf HTML, CSS, aur JS ho) deploy kar sakte hain.
Aapne successfully ek multi-page HTML website banana aur uske mukhya concepts ko samajh liya hai. Ab aap apni is website ko GitHub Pages par deploy karke poori duniya ko dikha sakte hain.