View Full Version : html codes
rajrsr
11-20-2013, 08:24 AM
I need html code for adding images.
milos87popovic
11-22-2013, 05:11 AM
Try w3scools.com or search on google...
Metizsoft
11-22-2013, 08:05 AM
Here are some ways to add image in html code:
<img src="url" alt="some_text">
You can also image width and height by its attribute.
You can also try live html editor. It can help you a lot by learning all the html tags as well.
http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_hr_test
cowan12
11-22-2013, 08:35 AM
Here is the HTML code used to insert the image on this webpage:
<img src="http://www.echoecho.com/rainbow.gif">
flumenk
12-15-2013, 04:42 AM
This is an example of HTML code on how you can add images:
<img src="smiley.gif" alt="Smiley face" height="42" width="42">
sptechnolab
12-17-2013, 02:54 AM
This is an example of HTML code on how you can add images:
<img src="smiley.gif" alt="Smiley face" height="42" width="42">
Best HTML code site:
http://www.w3schools.com/html/html_examples.asp
http://www.htmlcodetutorial.com/
dennis123
01-11-2014, 09:22 AM
Hello,
Did you mean you want to display or you want to upload the images ?
john00
01-11-2014, 10:02 AM
For inserting the image in a html we used the img src tag.
DianaRoberts
01-14-2014, 08:42 AM
<img src="url" alt="some_text">
use this code....
thomosmax
01-16-2014, 11:51 AM
You can check at w3schools.com and also use this code to insert images in your site. <img src="url" alt="some_text">
anas.man
01-17-2014, 09:31 AM
<img src="url" alt="some_text"> check it using this code...
anirban09P
02-24-2014, 03:08 AM
HTML defines the structure and layout of a Web document by using a variety of tags and attributes. The correct structure for an HTML document starts with <HTML><HEAD>(enter here what document is about)<BODY> and ends with </BODY></HTML>. All the information you'd like to include in your Web page fits in between the <BODY> and </BODY> tags.
ghsoftwares
02-26-2014, 01:24 PM
<img src="url" alt="some_text">
Try this code
seowikipedia
03-07-2014, 05:06 AM
Hello friend,
Use this code for adding image on HTML
<img src="http://www.example.com" alt="some text" width="100" breath="100" />
kmkhyd2014
03-10-2014, 06:35 AM
you can find it in w3schools web site and you can also get a tutorial based on it
stevex
09-16-2014, 02:22 AM
<img src="url" alt="text about the image or something else"> It is image tag coding for inserting image.
mubarak
09-17-2014, 08:35 AM
Hi Raj, Very simple to add the images in the html. You could find out my below code
<img src="your image url" alt="image name should be here"/>
Note: alt attribute is very important when you are using the img src tag because of w3c rule.
Rajdeep Bose
09-18-2014, 05:30 AM
For adding the image in a html we used the img src tag.
webcreations
09-19-2014, 06:40 AM
Example to add image :
<img src="pic_mountain.jpg" alt="Mountain View" style="width:304px;height:228px">
where src is to define image, alt for alternate text for the image, width and height to specify width and height in pixels respectively.
Glenn Rodgers
09-22-2014, 06:49 PM
http://www.w3schools.com/html/html_examples.asp is the best link to learn and get easy solution.
danialrobart
09-27-2014, 04:21 AM
Example of adding an image on HTML.
<html>
<head>
<title>Add Image</title>
</head>
<body>
<img src="http://www.escortservicesmanchester.co.uk/Laura-3.jpg">
</body>
</html>
jameskamroon1
09-29-2014, 08:36 AM
Image adding code is
<img src="http://www.sample.com/image.jpg"/>
you want to add other image like
>.gif
>.png
>.jpeg
than add
otsinfotech
09-30-2014, 08:27 AM
<img src="url" alt="some_text">
Learn more codes from w3school
<a href=" http://www.otsinfotech.com/seo-services" rel="nofollow"> professional seo services</a>
ivankent
11-05-2014, 05:29 AM
w3schools.com is the better website for the php code especially for the beginners.
markellis312
11-05-2014, 06:54 AM
W3 School Provide us all Languages code and Provide all solution who want HTML code they should visit w3school website.
deadmix
11-05-2014, 09:44 AM
The simple way is <img src="Image-Link" alt="" title="" /> and if you need to Link the image so you use :
<a href="Link"><img src="Image-Link" alt="" title="" /></a>
Alt and title are very important..
Goodluck
Powered by vBulletin® Version 4.2.4 Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.