<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Basic SEO for Web Developers Part 1]]></title><description><![CDATA[<p dir="auto"><strong>Important HTML Elements</strong></p>
<p dir="auto"><strong>1. Title Tag</strong></p>
<pre><code>&lt;head&gt; 
    &lt;title&gt;Page Title&lt;/title&gt;
&lt;/head&gt;
</code></pre>
<p dir="auto"><strong>Best Practices</strong></p>
<ul>
<li>Less than 512px (50-70 characters)</li>
<li>Important keywords near the beginning</li>
<li>Each title should be unique</li>
</ul>
<p dir="auto"><strong>2. Meta Description Tag</strong></p>
<pre><code>&lt;head&gt;
    &lt;meta name="description"content="This is an example."&gt;
&lt;/head&gt;
</code></pre>
<p dir="auto"><strong>Best Practices</strong></p>
<ul>
<li>Best under 155 characters</li>
<li>Each description should be unique</li>
<li>Well written descriptions influenceclick-through rate</li>
</ul>
<p dir="auto"><strong>3. Images</strong></p>
<pre><code>&lt;img src="img/keyword.jpg" alt="keyword" width="100" height="100"&gt;
</code></pre>
<p dir="auto"><strong>4. Hyperlinks</strong></p>
<ol>
<li>
<p dir="auto">Text Link</p>
<pre><code>&lt;a href="https://www.example.com/webpage.html"&gt;Keyword in Anchor Text&lt;/a&gt;
</code></pre>
</li>
<li>
<p dir="auto">NoFollowed Link</p>
<pre><code>&lt;a href="https://www.example.com/webpage.html" rel="nofollow"&gt;Keyword in Anchor Text&lt;/a&gt;
</code></pre>
</li>
<li>
<p dir="auto">Image Link</p>
<pre><code>&lt;a href="https://www.example.com/webpage.html"&gt;&lt;img src="/img/keyword.jpg" alt="keyword" width="100" height="100"&gt;&lt;/a&gt;
</code></pre>
</li>
</ol>
<p dir="auto"><strong>Best Practices</strong></p>
<ul>
<li>Preference: HTML links over JavaScript</li>
<li>Use "nofollow" for paid links and un-trusted content</li>
<li>For image links, the alt attribute serves as anchor text</li>
</ul>
<p dir="auto"><strong>5. HTTP Status Codes</strong></p>
<ul>
<li>200OK/Success</li>
<li>301Permanent Redirect</li>
<li>302Temporary Redirect</li>
<li>404Not Found</li>
<li>410Gone (permanently removed)</li>
<li>500Server Error</li>
<li>503Unavailable (retry later)</li>
</ul>
<p dir="auto"><strong>6. Webmaster Tools</strong></p>
<ol>
<li>Google Webmaster Tools - <a href="https://www.google.com/webmasters/tools/home" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.google.com/webmasters/tools/home</a></li>
<li>Bing Webmaster Tools - <a href="http://www.bing.com/toolbox/webmaster/" target="_blank" rel="noopener noreferrer nofollow ugc">http://www.bing.com/toolbox/webmaster/</a></li>
<li>Yandex Webmaster - <a href="https://webmaster.yandex.com/" target="_blank" rel="noopener noreferrer nofollow ugc">https://webmaster.yandex.com/</a></li>
</ol>
<p dir="auto"><strong>7. Canonicalization</strong></p>
<p dir="auto">Common Duplicate Homepage URLs</p>
<ul>
<li><a href="https://www.example.com" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.example.com</a></li>
<li><a href="https://example.com" target="_blank" rel="noopener noreferrer nofollow ugc">https://example.com</a></li>
<li><a href="https://www.example.com/index.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.example.com/index.html</a></li>
<li><a href="https://example.com/index.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://example.com/index.html</a></li>
<li><a href="https://example.com/index.html&amp;sessid=123" target="_blank" rel="noopener noreferrer nofollow ugc">https://example.com/index.html&amp;sessid=123</a></li>
</ul>
<p dir="auto">Canonicalized URL Best Practices</p>
<ul>
<li>Preferred URL = <a href="https://example.com/" target="_blank" rel="noopener noreferrer nofollow ugc">https://example.com/</a></li>
<li>Place the following in &lt;head&gt; section to indicate preferred URL:</li>
<li>&lt;link href="<a href="https://example.com/" target="_blank" rel="noopener noreferrer nofollow ugc">https://example.com/</a>" rel="canonical" /&gt;</li>
</ul>
<p dir="auto"><strong>8. URL Best Practices</strong><br />
<img src="/assets/uploads/files/1543928200309-5248a308-2daf-4ec2-80f4-5e474cb50c33-image-resized.png" alt="0_1543928143776_5248a308-2daf-4ec2-80f4-5e474cb50c33-image.png" class=" img-responsive img-markdown" /></p>
<p dir="auto">SEO Tips for URLs</p>
<ul>
<li>Choose shorter, human-readable URLs with descriptive keywords</li>
<li>Exclude dynamic parameters when possible (see Canonicalization and Pagination)</li>
<li>When possible, place content on the same subdomain to preserve authority</li>
<li><strong>Recommended:</strong> <a href="https://example.com/blog" target="_blank" rel="noopener noreferrer nofollow ugc">https://example.com/blog</a></li>
<li><strong>Less Ideal</strong>: <a href="https://blog.example.com" target="_blank" rel="noopener noreferrer nofollow ugc">https://blog.example.com</a></li>
</ul>
<p dir="auto">I'll post next part asap.<br />
Thank you all for your time in reading this!</p>
]]></description><link>https://lankadevelopers.lk/topic/28/basic-seo-for-web-developers-part-1</link><generator>RSS for Node</generator><lastBuildDate>Sun, 08 Mar 2026 08:11:52 GMT</lastBuildDate><atom:link href="https://lankadevelopers.lk/topic/28.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 04 Dec 2018 13:00:23 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Basic SEO for Web Developers Part 1 on Sun, 03 Feb 2019 18:40:08 GMT]]></title><description><![CDATA[<p dir="auto">@Gen2vi thanks mate...</p>
]]></description><link>https://lankadevelopers.lk/post/891</link><guid isPermaLink="true">https://lankadevelopers.lk/post/891</guid><dc:creator><![CDATA[dev_lak]]></dc:creator><pubDate>Sun, 03 Feb 2019 18:40:08 GMT</pubDate></item><item><title><![CDATA[Reply to Basic SEO for Web Developers Part 1 on Sun, 03 Feb 2019 02:04:30 GMT]]></title><description><![CDATA[<p dir="auto">Nice Post Bro...!!</p>
]]></description><link>https://lankadevelopers.lk/post/889</link><guid isPermaLink="true">https://lankadevelopers.lk/post/889</guid><dc:creator><![CDATA[asnkark]]></dc:creator><pubDate>Sun, 03 Feb 2019 02:04:30 GMT</pubDate></item><item><title><![CDATA[Reply to Basic SEO for Web Developers Part 1 on Thu, 06 Dec 2018 06:14:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/125">@Anjana_Gihan</a> thanks</p>
]]></description><link>https://lankadevelopers.lk/post/156</link><guid isPermaLink="true">https://lankadevelopers.lk/post/156</guid><dc:creator><![CDATA[dev_lak]]></dc:creator><pubDate>Thu, 06 Dec 2018 06:14:20 GMT</pubDate></item><item><title><![CDATA[Reply to Basic SEO for Web Developers Part 1 on Thu, 06 Dec 2018 01:39:37 GMT]]></title><description><![CDATA[<p dir="auto">Well Done</p>
]]></description><link>https://lankadevelopers.lk/post/154</link><guid isPermaLink="true">https://lankadevelopers.lk/post/154</guid><dc:creator><![CDATA[Anjana_Gihan]]></dc:creator><pubDate>Thu, 06 Dec 2018 01:39:37 GMT</pubDate></item><item><title><![CDATA[Reply to Basic SEO for Web Developers Part 1 on Tue, 04 Dec 2018 16:09:47 GMT]]></title><description><![CDATA[<p dir="auto">thanks <a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/27">@root</a> and <a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/5">@Danuva</a></p>
]]></description><link>https://lankadevelopers.lk/post/152</link><guid isPermaLink="true">https://lankadevelopers.lk/post/152</guid><dc:creator><![CDATA[dev_lak]]></dc:creator><pubDate>Tue, 04 Dec 2018 16:09:47 GMT</pubDate></item><item><title><![CDATA[Reply to Basic SEO for Web Developers Part 1 on Tue, 04 Dec 2018 15:21:32 GMT]]></title><description><![CDATA[<p dir="auto">Thanx bro</p>
]]></description><link>https://lankadevelopers.lk/post/151</link><guid isPermaLink="true">https://lankadevelopers.lk/post/151</guid><dc:creator><![CDATA[Danuva]]></dc:creator><pubDate>Tue, 04 Dec 2018 15:21:32 GMT</pubDate></item><item><title><![CDATA[Reply to Basic SEO for Web Developers Part 1 on Tue, 04 Dec 2018 13:54:28 GMT]]></title><description><![CDATA[<p dir="auto">Nice Post .. This is very important for every web developers</p>
]]></description><link>https://lankadevelopers.lk/post/150</link><guid isPermaLink="true">https://lankadevelopers.lk/post/150</guid><dc:creator><![CDATA[root]]></dc:creator><pubDate>Tue, 04 Dec 2018 13:54:28 GMT</pubDate></item></channel></rss>