Webmaster Forums - Website and SEO Help

Web Development and Design => Website Design and HTML => Topic started by: Idgold on April 02, 2015, 07:27:22 AM

Title: How to add image in html ?
Post by: Idgold on April 02, 2015, 07:27:22 AM
How to add image in html ...................
Title: Re: How to add image in html ?
Post by: janpaul on July 05, 2016, 04:42:42 AM
<html>
<body>

<h2>Spectacular Mountain</h2>
<img src="pic_mountain.jpg" alt="Mountain View" style="width:304px;height:228px;">

</body>
</html>
Title: Re: How to add image in html ?
Post by: incomecracker on December 08, 2016, 01:36:07 AM
<img src="pic_mountain.jpg" alt="Mountain View" style="width:304px;height:228px;"> use this coding to add image
Title: Re: How to add image in html ?
Post by: Erick_Lopez on October 22, 2017, 09:28:10 PM
Learn more HTML code here:
https://www.w3schools.com/
Title: Re: How to add image in html ?
Post by: michral86 on December 08, 2017, 01:45:15 AM
images are defined with the <img> tag.
The <img> tag is empty, it contains attributes only, and does not have a closing tag.

You can insert image using Below code:

<img src="img_chania.jpg" alt="Flowers in Chania">
The value of the alt attribute should describe the image
Title: Re: How to add image in html ?
Post by: sirishasiri on December 20, 2017, 09:05:39 AM
Adding images to your website or social networking profile is a great way to spruce up your page. The HTML code for adding images is straightforward, and often one of the first lessons for an HTML
Title: Re: How to add image in html ?
Post by: neosphere on January 23, 2018, 05:16:00 AM
<img src="Image1.png" alt="books img" width="128" height="128">

Fallow This HTML Tag To Adding Img. In HTML Page

Thank You..!!
Title: Re: How to add image in html ?
Post by: sophia009 on January 27, 2018, 04:12:00 AM
Hi

Inserting Images in HTML Documents
The web is not just about text, its multimedia and multimedia features of HTML allow you to include images, audio clips, video clips and other multimedia elements in web pages.

The <img> tag is used to insert images in HTML documents. It is an empty element and contains attributes only. The syntax of <img> tag can be given with:

<img src="url" alt="some_text">

The following example inserts three images on the web page:

ExampleTry this code ยป
<img src="kites.jpg" alt="Flying Kites">
<img src="sky.jpg" alt="Cloudy Sky">
<img src="balloons.jpg" alt="Hot Air Balloons">

Hope it helps you.
Title: Re: How to add image in html ?
Post by: lollipopp on January 28, 2018, 06:39:34 AM
You can add the images by following code <img src="pulpitrock.jpg" alt="name that you want to give">, This code can help you with all type of images.
Title: Re: How to add image in html ?
Post by: SarahWilding on February 08, 2018, 02:00:45 AM
You can add image by follow html tag
<img src="url or image path" alt="some_text">
Title: Re: How to add image in html ?
Post by: gracethemes on April 11, 2018, 02:28:21 PM
<html>
<body>

<h2>Spectacular Mountain</h2>
<img src="pic_mountain.jpg" alt="Mountain View" style="width:304px;height:228px;">

</body>
</html>
Title: Re: How to add image in html ?
Post by: agustina on April 20, 2018, 02:09:20 AM
< img src="Rose.jpg" alt="Flower" style="width:500px;height:600px;">
Here,
<img> is a lement to define an image
src is attribute to define an image url
Rose.jpg is a image url
alt="Flower" It define image name
style="width:500px;height:600px;" it defines the image width and height