Write HTML program to insert image …
CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Posted by Shruti S 4 years, 10 months ago
- 1 answers
Related Questions
Posted by Ketan Thakur 1 year, 2 months ago
- 3 answers
Posted by Moksh Sahu 1 year, 6 months ago
- 1 answers
Posted by Rakesh Sarkar 1 year, 4 months ago
- 0 answers
Posted by Ansh Gautam 1 year, 3 months ago
- 0 answers
Posted by Saumya Singh 1 year, 4 months ago
- 0 answers
Posted by Suman Devi 1 year, 3 months ago
- 1 answers
Posted by Hamza Ansari 1 year, 1 month ago
- 0 answers
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Gaurav Seth 4 years, 10 months ago
Images can be easily inserted at any section in an HTML page. To insert image in an HTML page, use the <img> tags. It is an empty tag, containing only attributes since the closing tag is not required.
<img src="<i>url</i>" alt="<i>some_text</i>">
The following example inserts three images on the web page:
Example
Try this code »
<pre> <code><img src="kites.jpg" alt="Flying Kites"> <img src="sky.jpg" alt="Cloudy Sky"> <img src="balloons.jpg" alt="Balloons"></code></pre>2Thank You