|
How to Insert Image on Html Page |
|
To embed image in your html page you need to define <img> tag.
If you are using a website builder this should be done automatically. Image tag is empty tag means there is no closing tag for it. With img tag you have to put it’s attribute that is src means source.
Use the following Html code:
<img src=”images/flower.jpg”>
This will be the result:

|
|
|
|
|