0% found this document useful (0 votes)
36 views1 page

Insert Image in HTML Webpage Guide

This document provides an example of how to insert an image into a webpage using HTML. It includes a sample HTML code snippet that demonstrates the use of the <img> tag with specified source, alt text, height, and width. The image is centered on the webpage.

Uploaded by

gggcdfhbggggcdf
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views1 page

Insert Image in HTML Webpage Guide

This document provides an example of how to insert an image into a webpage using HTML. It includes a sample HTML code snippet that demonstrates the use of the <img> tag with specified source, alt text, height, and width. The image is centered on the webpage.

Uploaded by

gggcdfhbggggcdf
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Program Number : 06

Program Name : Insert image in webpage using html.


--------------------------------------------------------------------------------------------------------------
Html Input :

<html>

<head>

<title>

Insert image in webpage using html

</title>

</head>

<body>

<center><img src= "G:\[Link]" alt="Sketch"

height="200px" width="400px"></center>

</body>

</html>

Html Output :

You might also like