Forum Moderators: open
i can make up the HTML code so that it looks aesthetically exactly the way i want it to look.
i understand that i should add meta tags. should i add a tag to every bulk of text, button and image, along with my title tag?
how would i add a meta tag to the text, button or image?
i want to make sure that obviously my page looks the way it should but also that it is not brought down in any way because there is important pieces of code missing from it - is there anything else i should be aware of whne coding?
any replies much appreciated.
An important META element is:
<meta name="description" content="The first page of my website is about...">
Which contains a brief description of the page and can be used by search engines. There are many.
One place to start looking...
[webmasterworld.com...]
Meta tags and more - from <head> to </head> [webmasterworld.com]
i understand that i should add meta tags. should i add a tag to every bulk of text, button and image, along with my title tag?
Just to clarify, the "meta" tag you want to make use of in images and buttons is the alt tag, in which alternate text is displayed if images are disabled. It's also what search engines digest when encountering an image.
<img src="myimage.gif" alt="Description of what is in this image">
...the "meta" tag you want to make use of in images and buttons is the alt tag...
Just to clear up the terminology a bit for those who may not be quite so familiar... I know a lot of people have refered to the 'alt tag' in the past, but it is strictly an attribute. In this case an attribute of the img tag.
Ok, people will know what you mean when you say 'alt tag' (and it's probably easier to say), but it will certainly help with searches if you know the correct jargon and if you were to start calling the 'TITLE attribute' a 'TITLE tag' (both valid but very different entities) for instance, then it will only stand to confuse.
[w3schools.com...]