KnowledgeBoat Logo
|

Computer Studies

Write all the steps to insert pictures in an HTML document

HTML Advanced Features

26 Likes

Answer

To insert pictures in an HTML document, we can use <img> tag, which is an empty tag. To add an image to the web page, we need to specify the complete path of the source.

Syntax:

<img src = "URL/Path"> where 'src' stands for source 

Example:

<img src = "d:/images/computer.jpg">

Answered By

14 Likes


Related Questions