Images
HTML Images Images can improve the design and the appearance of a web page. Example
|
1 2 3 4 5 6 7 8 9 |
<!DOCTYPE html> <html> <body> <h3>HTML Image</h3> <img src="pic_trulli.jpg" alt="Trulli" width="500" height="333"> </body> </html> |
Result HTML Image HTML Images Syntax The HTML <img> tag is used to embed an image in a web page. Images are not technically inserted into a web page; images are linked to web pages. The <img> tag creates a holding space for the […]