MCQ Tests Daily Quiz / Live Quiz Mock Test Practice Sets PYQ Courses Study Material Current Affairs Govt Exams Latest Updates Free Notes Downloads

Link & Media Tags (लिंक और मीडिया टैग)

यह किसी दूसरे पेज या वेबसाइट पर जाने के लिए होता है।

📌 Example:

<a href="https://www.uict.in">Visit UICT</a>

2. <img> – Image (इमेज)

यह वेबसाइट पर image दिखाने के लिए होता है।

📌 Example:

<img src="image.jpg" alt="My Image">
  • src = image का path
  • alt = image का नाम/description

3. <audio> – Audio (आवाज़)

यह वेबसाइट पर audio चलाने के लिए होता है।

📌 Example:

<audio controls>
  <source src="song.mp3" type="audio/mp3">
</audio>

controls = play/pause बटन दिखाने के लिए

4. <video> – Video

यह वेबसाइट पर video दिखाने के लिए होता है।

📌 Example:

<video controls width="300">
  <source src="video.mp4" type="video/mp4">
</video>