I read about SEO and understood that the higher the traffic of text, you have more content to be indexed by Google.
I have an application that is based on images, it's 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 I create a table that contains a title for the photo and declare in alt
or title
, will my images 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 pass this:
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
For more or less this:
<meta name="keywords" content="@foreach(var tag in tags){@tag.nome,}">
Will my content be treated as text by Google even though I'm receiving it dynamically?