<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blog.mogosanu.ro &#187; .html</title>
	<atom:link href="http://blog.mogosanu.ro/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mogosanu.ro</link>
	<description>the tutorial blog</description>
	<lastBuildDate>Sat, 03 Apr 2010 07:26:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Text Shadow</title>
		<link>http://blog.mogosanu.ro/css/css-text-shadow/</link>
		<comments>http://blog.mogosanu.ro/css/css-text-shadow/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 08:39:49 +0000</pubDate>
		<dc:creator>bogdanmogo</dc:creator>
				<category><![CDATA[.css {}]]></category>
		<category><![CDATA[.html]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://blog.mogosanu.ro/?p=213</guid>
		<description><![CDATA[Am vazut pe blogul chinezului un efect de shadow la textul din sidebar si ma gandeam ca sunt si altii dornici sa-l aiba pe blogul lor.
Pentru ca nu toate browserele stiu sa interpreteze proprietatea CSS text-shadow, trebuie sa facem un cod CSS separat pentru IE si celelalte browsere.
Incepem cu CSS-ul pentru Internet Explorer unde folosim [...]]]></description>
			<content:encoded><![CDATA[<p>Am vazut pe <a href="http://chinezu.eu" target="_blank">blogul chinezului</a> un efect de shadow la textul din sidebar si ma gandeam ca sunt si altii dornici sa-l aiba pe blogul lor.</p>
<p>Pentru ca nu toate browserele stiu sa interpreteze proprietatea CSS <strong>text-shadow</strong>, trebuie sa facem un cod CSS separat pentru IE si celelalte browsere.</p>
<p>Incepem cu CSS-ul pentru <a title="Internet Explorer" href="http://blog.mogosanu.ro/?s=Internet+Explorer">Internet Explorer</a> unde folosim filtrul Shadow, deoarece IE nu stie sa interpreteze <strong>text-shadow</strong>.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.umbra_ie</span> <span style="color: #00AA00;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span>Verdana<span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1em</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1em</span><span style="color: #00AA00;">;</span>
 filter<span style="color: #00AA00;">:</span> Shadow<span style="color: #00AA00;">&#40;</span>Color<span style="color: #00AA00;">=</span><span style="color: #cc00cc;">#ffaaaa</span><span style="color: #00AA00;">,</span>
 Direction<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">135</span><span style="color: #00AA00;">,</span>
 Strength<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">3</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Rezultatul codului de mai sus este:<img class="aligncenter size-full wp-image-220" title="umbra_ie" src="http://blog.mogosanu.ro/wp-content/uploads/2010/01/umbra_ie.gif" alt="umbra_ie" width="407" height="51" /></p>
<p>Ne ocupam acum de <strong>Mozilla </strong>si celelalte browsere:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.umbra_mozilla</span> <span style="color: #00AA00;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span>Verdana<span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1em</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1em</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0.1em</span> <span style="color: #933;">0.1em</span> <span style="color: #933;">0.1em</span> <span style="color: #cc00cc;">#ffaaaa</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><img class="aligncenter size-full wp-image-221" title="umbra_moz" src="http://blog.mogosanu.ro/wp-content/uploads/2010/01/umbra_moz.gif" alt="umbra_moz" width="306" height="38" /></p>
<p>Acum sa ne jucam putin cu umbrele pentru a obtine ceva mai frumos:</p>
<p><strong>Codul CSS</strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">div <span style="color: #00AA00;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#CCCCCC</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#D1D1D1</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span>Verdana<span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1em</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">20px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
h3<span style="color: #6666ff;">.a</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-1px</span> <span style="color: #933;">-1px</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">,</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #cc00cc;">#333</span><span style="color: #00AA00;">&#125;</span>
h3<span style="color: #6666ff;">.b</span> <span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">,</span> <span style="color: #933;">-1px</span> <span style="color: #933;">-1px</span> <span style="color: #cc00cc;">#444</span><span style="color: #00AA00;">&#125;</span></pre></div></div>

<p><strong>DIV-ul</strong> care contine <strong>Heading 3</strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div&gt;
&lt;h3 class=&quot;a&quot;&gt;Lorem ipsum dolor sit amet&lt;/h3&gt;
&lt;h3 class=&quot;b&quot;&gt;In blandit dui vel augue mattis&lt;/h3&gt;
&lt;/div&gt;</pre></div></div>

<p>Rezultatul este acesta:</p>
<p><img class="aligncenter size-full wp-image-222" title="blocul_cu_h3" src="http://blog.mogosanu.ro/wp-content/uploads/2010/01/blocul_cu_h3.gif" alt="blocul_cu_h3" width="359" height="93" /></p>
<p>sau</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">h3<span style="color: #6666ff;">.c</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-1px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc00cc;">#f8f8f8</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #cc00cc;">#f8f8f8</span><span style="color: #00AA00;">,</span>
             <span style="color: #933;">1px</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc00cc;">#f8f8f8</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">-1px</span> <span style="color: #cc00cc;">#f8f8f8</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
h3<span style="color: #6666ff;">.d</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-1px</span> <span style="color: #cc66cc;">0</span> <span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">,</span>
             <span style="color: #933;">1px</span> <span style="color: #cc66cc;">0</span> <span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">,</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">-1px</span> <span style="color: #000000; font-weight: bold;">black</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">&lt;h3 class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;c&quot;</span><span style="color: #00AA00;">&gt;</span>Lorem ipsum dolor&lt;/h3<span style="color: #00AA00;">&gt;</span>
&lt;h3 class<span style="color: #00AA00;">=</span><span style="color: #ff0000;">&quot;d&quot;</span><span style="color: #00AA00;">&gt;</span>Blandit dui vel augue&lt;/h3<span style="color: #00AA00;">&gt;</span></pre></div></div>

<p>&#8230;care arata asa:</p>
<p><img class="aligncenter size-full wp-image-223" title="blocul_cu_h3b" src="http://blog.mogosanu.ro/wp-content/uploads/2010/01/blocul_cu_h3b.gif" alt="blocul_cu_h3b" width="282" height="79" /></p>
<p>Fisierul html cu toate <strong><a title="Exemple CSS Text Shadow" href="http://blog.mogosanu.ro/wp-content/uploads/2010/01/index.zip">exemplele CSS</a></strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mogosanu.ro/css/css-text-shadow/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Go to top of Page animat cu jQuery</title>
		<link>http://blog.mogosanu.ro/css/go-to-top-of-page-animat-cu-jquery/</link>
		<comments>http://blog.mogosanu.ro/css/go-to-top-of-page-animat-cu-jquery/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 16:44:54 +0000</pubDate>
		<dc:creator>bogdanmogo</dc:creator>
				<category><![CDATA[.css {}]]></category>
		<category><![CDATA[.html]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[scroller]]></category>

		<guid isPermaLink="false">http://blog.mogosanu.ro/?p=118</guid>
		<description><![CDATA[Plecand de la scriptul dezvoltat de Ariel Flesler pentru a face smooth scroll pe o pagina, am construit un plugin pentru Wordpress, care sa faca acelasi lucru.
Pluginul poate fi customizat prin intermediul paginii de administrare, unde ii putem schimba interfata .css, dar si viteza de fading sau la ce height minim sa apara.
Instalare
Descarcam arhiva pluginului [...]]]></description>
			<content:encoded><![CDATA[<p>Plecand de la scriptul dezvoltat de <a href="http://flesler.blogspot.com" target="_blank">Ariel Flesler</a> pentru a face <a href="http://flesler.blogspot.com/2007/10/jqueryscrollto.html" target="_blank">smooth scroll</a> pe o pagina, am construit un plugin pentru <a href="http://blog.mogosanu.ro/tag/wordpress/">Wordpress</a>, care sa faca acelasi lucru.</p>
<p>Pluginul poate fi customizat prin intermediul paginii de administrare, unde ii putem schimba interfata <a href="http://blog.mogosanu.ro/tag/css/">.css</a>, dar si viteza de fading sau la ce height minim sa apara.</p>
<h2>Instalare</h2>
<p>Descarcam arhiva pluginului de <a href="http://www.divshare.com/download/9021771-715" target="_blank">aici</a> si plasam fisierele in directorul <strong>/wp-contents/plugins/.</strong></p>
<p>In lista de pluginuri vom gasi item-ul &#8220;<strong>Smooth GoToTop&#8221;</strong>, care trebuie activat.</p>
<h2><img class="aligncenter size-full wp-image-130" title="plugins_list" src="http://blog.mogosanu.ro/wp-content/uploads/2009/10/plugins_list.jpg" alt="plugins_list" width="617" height="246" /></h2>
<h2>Administrare</h2>
<p>Pentru adaptarea temei pluginului la blogul tau vom folosi pagina de administrare. Pluginul se va gasi in <strong>Settings &gt; Smooth GoToTop</strong>.</p>
<p><img class="aligncenter size-full wp-image-131" title="smoothgototop" src="http://blog.mogosanu.ro/wp-content/uploads/2009/10/smoothgototop.jpg" alt="smoothgototop" width="617" height="474" />Selectarea unei teme de culori pentru text si background se poate face prin apasarea label-urilor din dreptul campurilor <strong>Text</strong> sau <strong>Background</strong>. Pentru stabilirea pozitiei pe ecran si a distantei fata de margini se folosesc campurile <strong>Position</strong> si <strong>Padding.</strong></p>
<h2>Configurarea in modul avansat</h2>
<p>Pentru a configura distanta minima dupa care sa apara butonul de GoToTop, deschidem fisierul /<strong>jquery.top.js</strong> si mergem la <strong>linia 32</strong>.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">................
$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
                   $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#top-link'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">topLink</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
&nbsp;
                       min<span style="color: #339933;">:</span> <span style="color: #CC0000;">400</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// inaltimea minima dupa care sa apara butonul de GoToTop</span>
                       fadeSpeed<span style="color: #339933;">:</span> <span style="color: #CC0000;">500</span> <span style="color: #006600; font-style: italic;">// viteza de fading</span>
&nbsp;
                   <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
....</pre></div></div>

<p>Daca dorim sa schimbam dimensiunea fontului sau chiar fontul o putem face modificand cateva linii in fisierul /<strong>gototop.php</strong>, incepand cu <strong>linia 45</strong>.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#top-link</span>   <span style="color: #00AA00;">&#123;</span>
&nbsp;
                   <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
                   <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">fixed</span><span style="color: #00AA00;">;</span>
                   <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>
                   <span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>
                   <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">18px</span><span style="color: #00AA00;">;</span>
                   <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#000000</span><span style="color: #00AA00;">;</span>
                   <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> arial<span style="color: #00AA00;">;</span>
                   <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">11px</span><span style="color: #00AA00;">;</span>
                   <span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #993333;">bold</span><span style="color: #00AA00;">;</span>
                   <span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
                   <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#90FF00</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<h2 style="text-align: center;"><a href="http://www.divshare.com/download/9021771-715" target="_blank">Descarca plugin</a></h2>
<p style="text-align: left;">Pluginul poate fi vazut <a title="United Music Romania" href="http://unitedmusic.ro" target="_blank">aici</a>.</p>
<p style="text-align: left;">Astept comentarii si bug-uri&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mogosanu.ro/css/go-to-top-of-page-animat-cu-jquery/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Bazele SEO</title>
		<link>http://blog.mogosanu.ro/internet/bazele-seo/</link>
		<comments>http://blog.mogosanu.ro/internet/bazele-seo/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 18:00:21 +0000</pubDate>
		<dc:creator>bogdanmogo</dc:creator>
				<category><![CDATA[.internet]]></category>
		<category><![CDATA[.html]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://blog.mogosanu.ro/?p=71</guid>
		<description><![CDATA[Redirectionari HTTP
301 redirect este cel mai eficient mod de redirectionare pentru paginile care nu exista sau au fost mutate. Acest tip de redirectionare este interpretat de motoarele de cautare ca &#8220;moved permanently&#8221; si nu afecteaza procesul SEO. Un tool pentru verificarea headerelor poate fi gasit aici.
Pagina “custom” pentru linkuri inexistente
Pentru requesturile care intorc eroare 404 [...]]]></description>
			<content:encoded><![CDATA[<h3>Redirectionari HTTP</h3>
<p>301 redirect este cel mai eficient mod de redirectionare pentru paginile care nu exista sau au fost mutate. Acest tip de redirectionare este interpretat de motoarele de cautare ca &#8220;moved permanently&#8221; si nu afecteaza procesul SEO. Un tool pentru verificarea headerelor poate fi gasit <a href="http://www.webuildpages.com/seo-tools/header-checker/" target="_blank">aici</a>.</p>
<h3>Pagina “custom” pentru linkuri inexistente</h3>
<p>Pentru requesturile care intorc eroare 404 (pagina inexistenta) este indicat sa se realizeze o pagina custom, in care sa fie un mesaj de eroare.</p>
<h3>Cod HTML corect</h3>
<p>Un cod HTML corect scris asigura o mai buna vizibilitate pentru robotii motoarelor de cautare.</p>
<p>Eliminarea blank-urilor si a comentariilor din codul sursa duce la o micsorare a marimii unei pagini, deci un timp mai bun pentru incarcarea paginii.</p>
<h3>Title Element</h3>
<p>Toate paginile aplicatiei trebuie sa aiba un titlu. Titlul trebuie sa contina cel putin un keyword declarat in <strong>META Keywords Tag</strong>.</p>
<h3>Robots Text File &#8211; robots.txt</h3>
<p>Fisierul robots.txt declara accesul motoarelor de cautare in site.  Acest fisier se afla intotdeauna in root-ul site-ului si trebuie sa fie accesibil motoarelor de cautare.</p>
<h3>META Description</h3>
<p>Unele motoare de cautare folosesc intens acest element, in care trebuie sa se regaseasca o descriere succinta a paginii in 140-200 de caractere. Descrierea trebuie sa contina cel putin un cuvant cheie.</p>
<h3>META Keywords</h3>
<p>In META Keywords se afla cuvintele cheie care sa se regaseasca in cautarile din search engines.</p>
<h3>Link Relationship Tag &#8211; rel=&#8221;nofollow&#8221;</h3>
<p>Acest tag se foloseste in special cand nu dorim ca un link sa fie indexat. Se foloseste cu precadere pentru linkurile externe.</p>
<h3>Revisit-After META Tag</h3>
<p>In functie de perioada de update a informatiilor de pe site se seteaza revenirea robotilor de cautare.</p>
<h3>Sitemap</h3>
<p>Pentru o mai buna indexare se foloseste un sitemap, care furnizeaza motorului de cautare informatii ca: ultima actualizare a unei pagini, importanta unei pagini, valabilitatea unei pagini.</p>
<p>Este indicat ca Sitemap-ul sa fie generat dinamic, dar se poate crea si un sitemap static cu ajutorul tool-ului oferit de <a href="http://www.xml-sitemaps.com/" target="_blank">www.xml-sitemaps.com</a></p>
<h3>Tag-urile ALT si TITLE</h3>
<p>Toate imaginile site-ului trebuie sa contina tag-ul ALT si TITLE, pentru ca motoarele de cautare de fotografii sa le indexeze cat mai corect.</p>
<p>Linkurile trebuie sa contina tag-ul TITLE, motoarele de cautare stiind astfel ce reprezinta fiecare link.</p>
<h3>Friendly URLs</h3>
<p>Se stie ca o alta componenta SEO importanta sunt friendly URLs. URL-ul nu trebuie sa contina mai mult de 3-4 grupuri &#8220;/&#8221; si cu cat cuvantul cautat se afla mai departe de root-ul URL-ului cu atat el are o importanta mai mica pentru motoarele de cautare.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.mogosanu.ro/internet/bazele-seo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

