Go Back   SEO Forums Search Engine Optimization Techniques High Ranking on Google Yahoo MSN Search > Design & Development > HTML & Website Design

HTML & Website Design Place to talk about website design and get help with HTML, CSS, DHTML, etc.

Reply
 
Thread Tools Display Modes
Old 07-30-2008, 10:11 AM   #1 ()
Poitra25
Junior Member
 
Join Date: Jul 2008
Posts: 1
Default Images on a Website

Almost every website contains at least one image file. It could be a thumbnail, a photo, an artwork, or it can be a background design of the website. This brief article presents a glimpse on how webmasters incorporate images on their site. The two most common image formats on the web have an extension of either .jpg or .gif. Jpg is designed for photo-quality images while GIF is mainly used for thumbnails and small animations on websites. The downside to jpg is that it cannot contain animated images while the downside to GIF is that it cannot contain a lot of colors.

Website design services often optimize images to make sure that the website loads fast. The result of the final image (after optimization) could be seen as pixelated but it would be enough to get across the message that the webmaster intended it to be. Whether the image is a banner advertisement or a thumbnail that would open up a bigger picture, webmasters optimize them just enough that visitors can see what the advertisment is about or what the visitor can expect to see after clicking a thumbnail in a gallery.

Usually when you view a source of a webpage, you might see a line like this:

This means that: 1. The image does not contain a border. Most images on websites do not have borders and therefore, webmasters may have attached this code (or a similar code). 2. The image is called newsbutton.jpg. If the image name is changed, either the browser will not display an image, or, the brwoser will display a different image. 3. The size of the image is set to a width of 100 pixels and 40 pixels for the height. If the webmaster did not set up the dimensions in the code, the browser might display/resize the image for which the webmaster was not intending it to be. 4. After clicking the image, the browser will refresh to show a webpage named right.htm These days, many webmasters use flash on their sites. In a flash-based website, the visitors cannot just right-click save an image to their hardrive. The images are encoded in the flash file and the visitors may not have a way to save the image that they want. For an interactive tutorial on how to build websites using HTML, visit {a href="http://csshtmltutorial.com/">css html tutorial.com
Poitra25 is offline   Reply With Quote
Old 11-26-2008, 03:06 PM   #2 ()
jen.bas
Junior Member
 
Join Date: Nov 2008
Posts: 8
Arrow

Hmm.. yeah.. alt tags are the ones used for the images.. its important to use these tags because search engines can read them and you don't want your site getting indexed for some odd words..
jen.bas is offline   Reply With Quote
Old 11-10-2009, 02:43 AM   #3 ()
jamunesh88
Junior Member
 
Join Date: Nov 2009
Posts: 3
Default

Right click on the picture which you want to change and check the properties. When you click on the properties find out the location of the image where it is called ex. yourwebsite.com/images/center.jpg. Open your ftp search the location of the image and download, open with photo shop edit and reload the same location. Try this.
Good Luck
==========================================
Mortgage Payment Protection Insurance
Get Instant Cash

Last edited by jamunesh88 : 11-10-2009 at 02:52 AM.
jamunesh88 is offline   Reply With Quote
Old 11-27-2009, 09:55 AM   #4 ()
shanthi88
Junior Member
 
Join Date: Nov 2009
Posts: 3
Default

yes you are.
check out sxc.hu for free stock images that you can use.
and if your looking for cheap quality eco friendly web hosting check out www.hostatree.com/jacob
===========================================

cuba family resort
Ski Holidays France
shanthi88 is offline   Reply With Quote
Old 12-01-2009, 07:36 AM   #5 ()
mhuktar
Senior Member
 
Join Date: May 2009
Posts: 269
Default

If you post images to your blog/site then this little tip will give your ‘long tail’ Search Engine rankings a boost. Note: Though this tip is about optimising your images, this will boost your rankings in the normal Google Web Search - not just Image Search.

You should already be adding ‘alt’ and ‘title’ tags to each of your images. This tells the search engines what the picture is about. However the picture information has to compete with all the other content on the page - so why not give the pic it’s own page?

Say, for example, that you have a picture on your page (cartalk.html):
HTML Code:
<img src=’Pics/FERRARI-SCAGLIETTI.jpg’ title=’Black ferrari 612 scaglietti’ alt=’Black ferrari 612 scaglietti’>
Add another page to your site:
HTML Code:
<html>
<head>
<title>Black Ferrari 612 Scaglietti</title>
</head>
<body>
<h1>Black Ferrari 612 Scaglietti</h1>
<img src=’Pics/FERRARI-SCAGLIETTI.jpg’ title=’Black ferrari 612 scaglietti’ alt=’Black ferrari 612 scaglietti’>
<br>
<a href=’cartalk.html’>Back</a>
</body>
</html>
Save the page as ‘Black-ferrari-612-scaglietti.html’.

Go back to the image on cartalk.html and change it to this:
HTML Code:
<a href=’Black-ferrari-612-scaglietti.html’><img src=’Pics/FERRARI-SCAGLIETTI.jpg’ title=’Black ferrari 612 scaglietti’ alt=’Black ferrari 612 scaglietti’></a>
So what have you done here?

* You’ve added a highly-optimised page for the keywords ‘Black ferrari 612 scaglietti’.
* Courtesy of the ‘Back’ anchor on the new page, when a visitor finds the new page through the search engines they can easily find the attached content page.
* You’ve added more content to your site, and SEs love new content & big sites.


The new highly optimised page is a bit bare, and you might be tempted to ‘wrap’ it in your site’s template - but I’d hold off on that. If you add the same wrapper to all your image pages then you have a good chance of Google thinking that all the image pages are the same (as the image & description HTML will be small compared to the site template). Then you can get canned by the duplicate content filter.

You might also be thinking:

Well, that’s terrific for the search engines, but my site visitors don’t want to keep clicking the images and get basically the same pics back at them.

2 choices

1. Give them a high-res version of the pic to look at on the optimised image page. Not always possible, so;
2. Hide the fact that the image is actually a link.

Change
So what have you done here?

* You’ve added a highly-optimised page for the keywords ‘Black ferrari 612 scaglietti’.
* Courtesy of the ‘Back’ anchor on the new page, when a visitor finds the new page through the search engines they can easily find the attached content page.
* You’ve added more content to your site, and SEs love new content & big sites.


The new highly optimised page is a bit bare, and you might be tempted to ‘wrap’ it in your site’s template - but I’d hold off on that. If you add the same wrapper to all your image pages then you have a good chance of Google thinking that all the image pages are the same (as the image & description HTML will be small compared to the site template). Then you can get canned by the duplicate content filter.

You might also be thinking:

Well, that’s terrific for the search engines, but my site visitors don’t want to keep clicking the images and get basically the same pics back at them.

2 choices

1. Give them a high-res version of the pic to look at on the optimised image page. Not always possible, so;
2. Hide the fact that the image is actually a link.

Change
HTML Code:
<a href=’Black-ferrari-612-scaglietti.html’>
to
HTML Code:
<a style=”CURSOR: default” onMouseover=”window.status=”; return true” href=’Blac
That way when your visitor hovers the mouse over the image the cursor won’t turn into a hand and the status bar won’t show the href location. You could even disable the anchor through javascript if you don’t mind the extra work.
__________________
please visit us we specialized on :online casino
mhuktar is offline   Reply With Quote
Old 12-08-2009, 03:13 AM   #6 ()
jospin
Junior Member
 
Join Date: Dec 2009
Posts: 3
Default

Assuming you stored the images in a folder for the user, you already have more than enough skills to pull this off. It's just going to take adding a single line of code to your PHP script to upload the file:

echo "<img src=\"path-to-image/image-name.file-exte… />";

Just make sure to escape the double quotes and you're good to go.
=======================================

Self Certification Mortgage Quote
loan refinance
jospin is offline   Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Please review our forum website Bankxp Website Reviews 3152 07-21-2010 12:10 AM
Search Engine Optimization - What is it? marketraise int SEM/SEO Resources and Advice 10 06-06-2009 05:29 AM
The Path To Traffic Success. marketraise int SEM/SEO Resources and Advice 3 10-16-2008 12:31 PM
Please review my website Niksha Website Reviews 0 12-21-2007 09:42 AM
Starting tips for a new website marketraise int SEO Tips & Techniques 0 05-23-2007 07:46 AM


All times are GMT. The time now is 08:26 PM.


Homepage
Dedicated Server Hosting - Unmetered Server Hosting - Web Hosting Forum
Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.