3
I did a reading on SEO and understood that the higher the text traffic, you have more content to be indexed by Google.
I have an application that is based on images, is practically a "multiple-gallery" generated not exactly like this, but more or less as follows.
foreach(var foto in galeria){
<img src="~/arquivos/@foto.imagem" />
}
I was thinking, if you create a table that contains a title for the photo and declare in alt
or title
, my images will have a value for indexing?
foreach(var foto in galeria){
<img src="~/arquivos/@foto.imagem" title="@foto.titulo"/>
}
In addition, I thought of generating a table in which the user can register TAGs
. Example:
The application will go beyond this:
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
For more or less that:
<meta name="keywords" content="@foreach(var tag in tags){@tag.nome,}">
My content will be treated as text by Google despite being receiving the same dynamically?
With respect to using
alt
andtitle
, if you use these attributes, Google will index their text. This really makes your images easier to find.– Oralista de Sistemas