<?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>SEO Neurons</title>
	<atom:link href="https://seoneurons.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://seoneurons.com/blog/</link>
	<description>Create, Optimize Website and Drive More Organic Traffic</description>
	<lastBuildDate>Sun, 08 Jun 2025 02:53:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://seoneurons.com/blog/wp-content/uploads/2024/06/cropped-logo-32x32.png</url>
	<title>SEO Neurons</title>
	<link>https://seoneurons.com/blog/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Whitelist Cloudflare IPs in AWS Using AWS CLI</title>
		<link>https://seoneurons.com/blog/allow-only-cloudflares-ip-aws/</link>
					<comments>https://seoneurons.com/blog/allow-only-cloudflares-ip-aws/#comments</comments>
		
		<dc:creator><![CDATA[Ashok Sihmar]]></dc:creator>
		<pubDate>Mon, 02 Jun 2025 16:20:46 +0000</pubDate>
				<category><![CDATA[Security]]></category>
		<guid isPermaLink="false">https://seoneurons.com/blog/?p=13279</guid>

					<description><![CDATA[<p>When you use Cloudflare to protect your website or application, it acts as a reverse proxy. All user traffic passes through Cloudflare before reaching your AWS EC2 instance. This setup protects your origin server from threats like DDoS attacks, malicious bots, and direct IP scanning. However, if your EC2 instance accepts connections from all IPs, &#8230;</p>
<p>The post <a href="https://seoneurons.com/blog/allow-only-cloudflares-ip-aws/">How to Whitelist Cloudflare IPs in AWS Using AWS CLI</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>When you use Cloudflare to protect your website or application, it acts as a reverse proxy. All user traffic passes through Cloudflare before reaching your AWS EC2 instance. This setup protects your origin server from threats like DDoS attacks, malicious bots, and direct IP scanning.</p>



<p>However, if your EC2 instance accepts connections from all IPs, attackers can bypass Cloudflare and hit your server directly using its public IP address. That defeats the purpose of using Cloudflare.</p>



<p>To prevent this, you should allow only Cloudflare&#8217;s IP ranges in your AWS security group. This ensures that only traffic routed through Cloudflare can reach your server, and all other direct connections are denied.</p>



<h2 class="wp-block-heading" id="h-step-1-create-a-new-security-group-in-aws">Step 1: Create a New Security Group in AWS</h2>



<p>Before you can whitelist Cloudflare IPs, you need to create a new security group that will be used specifically for this purpose. This security group will not allow all inbound traffic like the default one. Instead, you&#8217;ll configure it to allow traffic <strong>only from Cloudflare&#8217;s IP ranges</strong>.</p>



<p>Here’s how to create a new security group via the AWS Console:</p>



<h3 class="wp-block-heading" id="h-1-log-in-to-the-aws-management-console">1. Log in to the AWS Management Console</h3>



<p>Go to <a href="https://console.aws.amazon.com/">https://console.aws.amazon.com/</a> and log in with your credentials.</p>



<h3 class="wp-block-heading" id="h-2-navigate-to-ec2-dashboard">2. Navigate to EC2 Dashboard</h3>



<p>Once logged in, go to the EC2 service. You can find it by searching “EC2” in the top search bar or selecting it from the Services menu.</p>



<h3 class="wp-block-heading" id="h-3-go-to-security-groups">3. Go to Security Groups</h3>



<p>On the left sidebar, under <strong>&#8220;Network &amp; Security&#8221;</strong>, click on <strong>&#8220;Security Groups&#8221;</strong>.</p>



<h3 class="wp-block-heading" id="h-4-click-on-create-security-group">4. Click on “Create Security Group”</h3>



<p>At the top right corner, click the <strong>&#8220;Create security group&#8221;</strong> button.</p>



<h3 class="wp-block-heading" id="h-5-fill-in-the-security-group-details">5. Fill in the Security Group Details</h3>



<p>Now you’ll be prompted to fill out the following fields:</p>



<ul class="wp-block-list">
<li><strong>Security group name:</strong><br>Enter a recognizable name, such as <code>CloudflareOnlyAccess</code> or <code>CF-Whitelist</code>.</li>



<li><strong>Description:</strong><br>Write a brief description, for example: <code>Allow only Cloudflare IPs on ports 80 and 443</code>.</li>



<li><strong>VPC:</strong><br>Your default VPC will be auto-selected here. If your EC2 instance is part of a specific VPC, make sure to choose that one. Otherwise, leave it as is.</li>



<li><strong>Tags (optional):</strong><br>You can add a tag like <code>Name: CloudflareWhitelist</code> to help identify this security group later.</li>
</ul>



<h3 class="wp-block-heading" id="h-6-configure-inbound-rules">6. Configure Inbound Rules</h3>



<p>For now, <strong>leave the Inbound rules section empty</strong>. You&#8217;ll add specific Cloudflare IPs via AWS CLI later.</p>



<h3 class="wp-block-heading" id="h-7-configure-outbound-rules">7. Configure Outbound Rules</h3>



<p>By default, AWS allows all outbound traffic from your instance. You can leave this as is unless you have a strict need to control outgoing traffic.</p>



<h3 class="wp-block-heading" id="h-8-create-the-security-group">8. Create the Security Group</h3>



<p>Scroll down and click the <strong>&#8220;Create security group&#8221;</strong> button.</p>



<p>Once created, your new security group will appear in the list. Make sure to note down the <strong>Security Group ID</strong> (for example, <code>sg-08ea2ffd64093162c</code>). You’ll use this ID when adding IPs using the AWS CLI.</p>



<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="1080" height="587" src="https://seoneurons.com/blog/wp-content/uploads/2025/06/create-aws-security-group.png" alt="" class="wp-image-13280" srcset="https://seoneurons.com/blog/wp-content/uploads/2025/06/create-aws-security-group.png 1080w, https://seoneurons.com/blog/wp-content/uploads/2025/06/create-aws-security-group-768x417.png 768w" sizes="(max-width: 1080px) 100vw, 1080px" /></figure>



<p>At this point, you’ve successfully created a security group with no inbound rules. This means your server won’t accept any incoming traffic unless explicitly allowed — which is exactly what you want for a locked-down, Cloudflare-only setup.</p>



<p>If all of this feels a bit too technical or you&#8217;re worried about making a misstep that could accidentally expose your server or break your site’s availability, you&#8217;re not alone. Website security is a complex area that needs careful planning — especially when dealing with firewall rules, CDNs like Cloudflare, and AWS security groups. At <strong>SEO Neurons</strong>, <a href="https://seoneurons.com/website-security/">we offer end-to-end website security solutions</a> to help you lock down your infrastructure, monitor threats, and stay compliant — without the guesswork. So whether you&#8217;re just starting or already facing issues, our team can help secure your digital presence effectively.</p>



<h2 class="wp-block-heading">Step 2: Access AWS CLI Using AWS CloudShell (No Local Setup Required)</h2>



<p>Instead of running AWS CLI commands from your local machine or launching a temporary EC2 instance, the easiest and most secure option is to use <strong>AWS CloudShell</strong>.</p>



<p>CloudShell is a browser-based shell provided by AWS, which comes pre-installed with AWS CLI and is already authenticated with your user’s IAM permissions.</p>



<figure class="wp-block-image size-full"><img decoding="async" width="2560" height="227" src="https://seoneurons.com/blog/wp-content/uploads/2025/06/cloudshell-scaled.png" alt="access aws cloudshell" class="wp-image-13283" srcset="https://seoneurons.com/blog/wp-content/uploads/2025/06/cloudshell-scaled.png 2560w, https://seoneurons.com/blog/wp-content/uploads/2025/06/cloudshell-768x68.png 768w, https://seoneurons.com/blog/wp-content/uploads/2025/06/cloudshell-1536x136.png 1536w, https://seoneurons.com/blog/wp-content/uploads/2025/06/cloudshell-2048x182.png 2048w" sizes="(max-width: 2560px) 100vw, 2560px" /></figure>



<h3 class="wp-block-heading">How to Access CloudShell</h3>



<ol class="wp-block-list">
<li>Log in to your AWS Console.</li>



<li>On the top-right corner of the dashboard, click the <strong>“CloudShell”</strong> icon.</li>



<li>A terminal window will open at the bottom of your screen. This is a fully managed shell environment with access to AWS CLI.</li>



<li>Ensure that the IAM user or role you&#8217;re logged in with has the necessary permissions to <strong>modify security groups</strong>, such as <code>ec2:AuthorizeSecurityGroupIngress</code>.</li>
</ol>



<p>Now you&#8217;re ready to run shell scripts directly in AWS without any local setup.</p>



<h2 class="wp-block-heading">Step 3: Add Cloudflare IPv4 to Security Group Using AWS CLI</h2>



<p>Once CloudShell is open, you can execute the following shell script to whitelist <strong>Cloudflare’s IPv4</strong> address ranges.</p>



<p>Replace <code>sg-08ea2ffd64093123c</code> with the ID of the security group you created earlier.</p>



<pre class="wp-block-code"><code>#!/bin/bash

# Download Cloudflare IPv4 address ranges
wget https://www.cloudflare.com/ips-v4 -O cloudflare_ips.txt

# Security Group ID
SG_ID="sg-08ea2ffd64093123c"

# Loop through each IPv4 range and allow ports 80 and 443
while read -r p || &#91;&#91; -n "$p" ]]; do
  aws ec2 authorize-security-group-ingress \
    --group-id "$SG_ID" \
    --ip-permissions "IpProtocol=tcp,FromPort=80,ToPort=80,IpRanges=&#91;{CidrIp=$p,Description='Cloudflare'}]"

  aws ec2 authorize-security-group-ingress \
    --group-id "$SG_ID" \
    --ip-permissions "IpProtocol=tcp,FromPort=443,ToPort=443,IpRanges=&#91;{CidrIp=$p,Description='Cloudflare'}]"
done &lt; cloudflare_ips.txt

# Cleanup
rm cloudflare_ips.txt

echo "Cloudflare IPv4 IPs have been added to the security group."
</code></pre>



<p><strong>How to run the script in CloudShell:</strong></p>



<ol class="wp-block-list">
<li>Copy the script above into a file:</li>
</ol>



<pre class="wp-block-code"><code>nano add-cloudflare-ipv4.sh
</code></pre>



<ol start="2" class="wp-block-list">
<li>Paste the content, save (<code>Ctrl + O</code>), and exit (<code>Ctrl + X</code>).</li>



<li>Make it executable and run:</li>
</ol>



<pre class="wp-block-code"><code>chmod +x add-cloudflare-ipv4.sh
./add-cloudflare-ipv4.sh
</code></pre>



<h2 class="wp-block-heading">Step 4: Add Cloudflare IPv6 to Security Group Using AWS CLI</h2>



<p>If your setup supports IPv6, run the following script the same way to allow Cloudflare&#8217;s IPv6 ranges:</p>



<pre class="wp-block-code"><code>#!/bin/bash

# Download Cloudflare IPv6 address ranges
wget https://www.cloudflare.com/ips-v6 -O cloudflare_ips.txt

# Security Group ID
SG_ID="sg-08ea2ffd64093123c"

# Loop through each IPv6 range and allow ports 80 and 443
while read -r p || &#91;&#91; -n "$p" ]]; do
  aws ec2 authorize-security-group-ingress \
    --group-id "$SG_ID" \
    --ip-permissions "IpProtocol=tcp,FromPort=80,ToPort=80,Ipv6Ranges=&#91;{CidrIpv6=$p,Description='Cloudflare'}]"

  aws ec2 authorize-security-group-ingress \
    --group-id "$SG_ID" \
    --ip-permissions "IpProtocol=tcp,FromPort=443,ToPort=443,Ipv6Ranges=&#91;{CidrIpv6=$p,Description='Cloudflare'}]"
done &lt; cloudflare_ips.txt

# Cleanup
rm cloudflare_ips.txt

echo "Cloudflare IPv6 IPs have been added to the security group."
</code></pre>



<p>Run the same steps: create a <code>.sh</code> file in CloudShell, make it executable, and execute it.</p>



<p>This ensures that your EC2 instance accepts traffic only from Cloudflare’s networks, protecting it from direct IP hits.</p>



<h2 class="wp-block-heading">Step 5: Attach the Security Group to Your EC2 Instance and Remove the Default One</h2>



<p>Now that your security group is configured to allow only Cloudflare traffic, it’s time to attach it to your EC2 instance and detach the default security group (which often allows unrestricted access like 0.0.0.0/0).</p>



<h3 class="wp-block-heading">Steps to Attach the Security Group:</h3>



<ol class="wp-block-list">
<li>Go to the <strong>EC2 Dashboard</strong> in the AWS Console.</li>



<li>Click on <strong>Instances</strong> from the left sidebar.</li>



<li>Select the EC2 instance you want to secure.</li>



<li>In the bottom panel, click on the <strong>Security</strong> tab.</li>



<li>Next to “Security groups”, click the <strong>edit icon</strong>.</li>



<li>In the edit screen:
<ul class="wp-block-list">
<li><strong>Remove</strong> the default security group (if it allows 0.0.0.0/0 or wide access).</li>



<li><strong>Add</strong> the new security group you created for Cloudflare IPs.</li>
</ul>
</li>



<li>Click <strong>Save</strong> to apply changes.</li>
</ol>



<p>This way, only Cloudflare’s network can reach your server over HTTP (port 80) and HTTPS (port 443), preventing any direct IP access attempts.</p>



<h2 class="wp-block-heading" id="h-step-6-verify-that-your-ec2-instance-is-now-protected-from-direct-ip-access">Step 6: Verify That Your EC2 Instance Is Now Protected from Direct IP Access</h2>



<p>After applying your new security group, it’s essential to verify that everything is working correctly — meaning your EC2 instance is only accessible through Cloudflare and <strong>not via direct IP</strong>.</p>



<h3 class="wp-block-heading">1. Confirm Your Website Loads via Domain Name</h3>



<p>Visit your website through the domain name (e.g., <code>https://yourdomain.com</code>). If everything is set up properly, your site should load normally.</p>



<p>You can also inspect the response headers in your browser&#8217;s developer tools (Network tab). If you see headers like <code>cf-ray</code> or <code>server: cloudflare</code>, it confirms your site is successfully routed through Cloudflare.</p>



<h3 class="wp-block-heading">2. Try Accessing Directly via Public IP (It Should Fail)</h3>



<p>Now, try entering your EC2 instance’s public IP directly in your browser:</p>



<pre class="wp-block-code"><code>http:&#47;&#47;&lt;your-ec2-ip&gt;</code></pre>



<p>You should get a timeout or connection refused message. That’s perfect — it means your server is no longer accepting direct traffic and is only accessible through Cloudflare.</p>



<p>For more detailed verification, you can run:</p>



<pre class="wp-block-code"><code>curl http://&lt;your-ec2-public-ip&gt;</code></pre>



<p>And then:</p>



<pre class="wp-block-code"><code>curl -I https://yourdomain.com</code></pre>



<p>This will show if the response is coming through Cloudflare (look for <code>server: cloudflare</code>).</p>



<h3 class="wp-block-heading">3. Double-Check Security Group Rules</h3>



<p>Go to <strong>EC2 &gt; Security Groups</strong>, click on your custom security group, and confirm:</p>



<ul class="wp-block-list">
<li>Only Cloudflare IPs are listed in the <strong>Inbound rules</strong></li>



<li>Ports 80 and 443 are included</li>



<li>No open access like <code>0.0.0.0/0</code> or <code>::/0</code> is present</li>
</ul>



<h2 class="wp-block-heading">⚠️ Important Note About File Uploads &amp; DNS Proxy Mode</h2>



<p>Please note: When using Cloudflare with the <strong>proxy mode enabled</strong> (orange cloud icon in DNS settings), your website&#8217;s traffic is strictly routed through Cloudflare. That’s the whole point of this setup.</p>



<p>However, there is a <strong>100 MB upload limit</strong> on Cloudflare’s proxy.</p>



<p>So if you need to upload files larger than 100 MB (such as large backups or videos), you may face issues — uploads can fail or timeout.</p>



<p>To handle this, you can temporarily:</p>



<ol class="wp-block-list">
<li>Disable Cloudflare proxy for your domain (turn the orange cloud to gray).</li>



<li>Add back the <strong>default security group</strong> that allows open access (e.g., 0.0.0.0/0) just for that time.</li>



<li>Complete the upload.</li>



<li>Re-enable the Cloudflare proxy.</li>



<li>Re-attach the Cloudflare-only security group and remove the open one.</li>
</ol>



<p>This ensures you stay secure and functional, without permanently exposing your EC2 instance.</p>
<p>The post <a href="https://seoneurons.com/blog/allow-only-cloudflares-ip-aws/">How to Whitelist Cloudflare IPs in AWS Using AWS CLI</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seoneurons.com/blog/allow-only-cloudflares-ip-aws/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>An Update on Site Names: Google&#8217;s New Approach</title>
		<link>https://seoneurons.com/blog/site-names-update/</link>
					<comments>https://seoneurons.com/blog/site-names-update/#comments</comments>
		
		<dc:creator><![CDATA[Ashok Sihmar]]></dc:creator>
		<pubDate>Fri, 04 Aug 2023 16:24:15 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://seoneurons.com/blog/?p=12948</guid>

					<description><![CDATA[<p>Imagine you&#8217;re at a bustling party, trying to find your friend, John. You shout out &#8220;John!&#8221; and several heads turn &#8211; there&#8217;s John the baker, John the lawyer, and John the artist. It&#8217;s a common name, and it&#8217;s confusing. This is similar to what happens when Google tries to identify websites with common or similar &#8230;</p>
<p>The post <a href="https://seoneurons.com/blog/site-names-update/">An Update on Site Names: Google&#8217;s New Approach</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Imagine you&#8217;re at a bustling party, trying to find your friend, John. You shout out &#8220;John!&#8221; and several heads turn &#8211; there&#8217;s John the baker, John the lawyer, and John the artist. It&#8217;s a common name, and it&#8217;s confusing. This is similar to what happens when Google tries to identify websites with common or similar names. But Google has recently rolled out updates to its site names feature in Google Search, aiming to reduce this confusion and improve the user experience.</p>



<h2 class="wp-block-heading" id="h-what-s-new-in-google-s-site-names-update">What&#8217;s New in Google&#8217;s Site Names Update?</h2>



<p>Google&#8217;s site names feature is the title and name of the site Google displays in the search results listings. Google displays the name of the website from which a page originates when it appears in search results. The recent updates have expanded the support for site names on subdomains across all devices in English, French, German, and Japanese.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" width="1280" height="720" src="https://seoneurons.com/blog/wp-content/uploads/2023/08/site-name-update.png" alt="Google Site Name Update" class="wp-image-12955" srcset="https://seoneurons.com/blog/wp-content/uploads/2023/08/site-name-update.png 1280w, https://seoneurons.com/blog/wp-content/uploads/2023/08/site-name-update-768x432.png 768w, https://seoneurons.com/blog/wp-content/uploads/2023/08/site-name-update-390x220.png 390w" sizes="(max-width: 1280px) 100vw, 1280px" /></figure>
</div>


<p>Moreover, Google has made other improvements and added workarounds when Google gets your site name wrong. For instance, if Google&#8217;s site name system isn&#8217;t robust enough to use your preferred name, it considers the alternative name provided by the alternateName property.</p>



<p>Google has updated its guidance on declaring your preferred site name to Google Search. The best way to indicate a preferred site name to Google is to use WebSite structured data, as explained in Google&#8217;s site name documentation. Google now encourages more use of the alternateName property when sometimes a preferred site name isn&#8217;t available for your site.</p>



<h2 class="wp-block-heading" id="h-workarounds-for-site-names">Workarounds for Site Names</h2>



<p>Google has also listed a few workarounds for when Google Search does not select the preferred or alternative names. These include:</p>



<ol class="wp-block-list">
<li>Providing an alternative name using the alternateName property.</li>



<li>&nbsp;Providing your domain or subdomain name as a backup option.</li>



<li> If the above two options don&#8217;t work, you can provide your domain or subdomain name (in all lowercase) as your preferred name as a last-resort workaround option.</li>
</ol>



<p>Google uses various methods to determine the name of a website for search results. However, you can use structured data on your homepage in order to convey to Google the specific name of your website. Google has specific documentation on this new Site name structured data.</p>



<p>Here is an example:</p>



<pre class="wp-block-code"><code>&lt;script type="application/ld+json">
{
  "@context" : "http://schema.org",
  "@type" : "WebSite",
  "name" : "John's Bakery",
  "alternateName" : "John the Baker",
  "url" : "https://example.com/"
}
&lt;/script></code></pre>



<p>In this example, &#8220;John&#8217;s Bakery&#8221; is the primary name of the website, and &#8220;John the Baker&#8221; is an alternative name that Google can consider if it&#8217;s unable to use the primary name in search results.</p>



<h2 class="wp-block-heading" id="h-the-evolution-of-site-names">The Evolution of Site Names</h2>



<p>The feature for site names has developed since its launch in October 2022. At first, Google introduced site names for the domain level in mobile search results for major languages like English, French, German, and Japanese. In April 2023, site names were added for desktops for the same set of languages. By May 2023, Google support extended for subdomain-level site names and was available for the same languages on mobile search results.</p>



<h2 class="wp-block-heading" id="h-conclusion">Conclusion</h2>



<p>The update has improved how Google selects and shows your site name in the Google Search results. If Google is still getting it wrong and you are following the documentation, maybe try some of those new workarounds to get your site name to show precisely how you want it in Google Search.</p>



<p>Just like at the party, when you specify &#8220;John, the baker&#8221;, it becomes easier to find the right John. Similarly, with Google&#8217;s new site names update, it&#8217;s now easier for users to find the right website they&#8217;re searching for. So, whether you&#8217;re a website owner or a user, this update is set to improve your Google Search experience.</p>
<p>The post <a href="https://seoneurons.com/blog/site-names-update/">An Update on Site Names: Google&#8217;s New Approach</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seoneurons.com/blog/site-names-update/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Google will deprecate Sitemaps ping endpoint: All You Need to Know.</title>
		<link>https://seoneurons.com/blog/google-deprecate-sitemaps-ping-endpoint/</link>
					<comments>https://seoneurons.com/blog/google-deprecate-sitemaps-ping-endpoint/#respond</comments>
		
		<dc:creator><![CDATA[Ashok Sihmar]]></dc:creator>
		<pubDate>Tue, 04 Jul 2023 18:14:32 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://seoneurons.com/blog/?p=12844</guid>

					<description><![CDATA[<p>Google has announced the deprecation of the sitemaps &#8220;ping&#8221; endpoint, a decision that will significantly impact the way webmasters communicate updates to their websites with search engines. The change, set to take effect by the end of 2023, comes as a result of internal brainstorming by Google and other search engines like Bing, which found &#8230;</p>
<p>The post <a href="https://seoneurons.com/blog/google-deprecate-sitemaps-ping-endpoint/">Google will deprecate Sitemaps ping endpoint: All You Need to Know.</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Google has announced the deprecation of the sitemaps &#8220;ping&#8221; endpoint, a decision that will significantly impact the way webmasters communicate updates to their websites with search engines. The change, set to take effect by the end of 2023, comes as a result of internal brainstorming by Google and other search engines like Bing, which found that unauthenticated sitemap submissions were not very useful and often led to spam.</p>



<h2 class="wp-block-heading" id="h-the-sitemaps-protocol-a-brief-history">The Sitemaps Protocol: A Brief History</h2>



<p>Introduced in 2005, the Sitemaps Protocol was designed to aid search engines in discovering new URLs and scheduling crawls of already discovered URLs. The protocol has remained largely unchanged for over 15 years, and despite its popularity, some aspects of it have become less practical in the modern internet landscape.</p>



<p>One such aspect is the &#8220;ping&#8221; endpoint. This feature allowed webmasters to notify search engines when their sitemap was updated, prompting the search engines&#8217; bots to crawl the website again to update their records. However, this system was found to be flawed, with the vast majority of the submissions leading to spam.</p>



<h2 class="wp-block-heading" id="h-the-end-of-the-ping-endpoint">The End of the Ping Endpoint</h2>



<p>With the deprecation of the ping endpoint, HTTP requests (&#8220;pings&#8221;) to the deprecated REST endpoint will result in a 404 error. This means that any existing code or plugins that use this endpoint will not cause problems for Google Search, but they also won&#8217;t serve any SEO purposes.</p>



<p>Webmasters need not worry, though. Google has provided alternative methods for submitting sitemaps. You can still submit your <a href="https://seoneurons.com/blog/technical-seo/robots-txt-file/">sitemaps through robots.txt</a> and <a href="https://seoneurons.com/blog/google-search-console/">Google Search Console</a>.</p>



<h2 class="wp-block-heading" id="h-use-lastmod-element-instead">Use <code>lastmod</code> Element Instead.</h2>



<p>In place of the ping endpoint, Google is encouraging the use of the <code>lastmod</code> element in sitemaps. This element, which indicates the last date a page was modified, has been useful in many cases and is now being used as a signal for scheduling crawls to previously discovered URLs.</p>



<p>To illustrate, let&#8217;s look at an example of how to implement the <code>lastmod</code> element in your sitemap:</p>



<pre class="wp-block-code"><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"&gt;
   &lt;url&gt;
      &lt;loc&gt;http://www.example.com/&lt;/loc&gt;
      &lt;lastmod&gt;2023-07-01&lt;/lastmod&gt;
      &lt;changefreq&gt;monthly&lt;/changefreq&gt;
      &lt;priority&gt;0.8&lt;/priority&gt;
   &lt;/url&gt;
   &lt;!-- more URLs can be added here --&gt;
&lt;/urlset&gt;
</code></pre>



<p>In this example, the <code>lastmod</code> tag is used to indicate the last time the content at the given URL was modified. The date must be in the W3C Datetime format, which is &#8220;YYYY-MM-DD&#8221;. This sitemap file should be located in the root directory of your website, for example: <code>http://www.example.com/sitemap.xml</code>.</p>



<p>For the <code>lastmod</code> element to be effective, it needs to be in a supported date format and must consistently match reality. If a page hasn&#8217;t changed in several years, but the <code>lastmod</code> element indicates a recent change, search engines may eventually stop trusting the last modified date of your pages.</p>



<h2 class="wp-block-heading" id="h-the-future-of-seo">The Future of SEO</h2>



<p>The deprecation of the ping endpoint is a significant change, but it&#8217;s not cause for panic. Webmasters like you; have half a year to adapt, and even if you do use the sitemap ping endpoint, it won&#8217;t harm your rankings, as long as you continue to deliver valuable content and communicate honestly with both your audience and search engines.</p>



<p>Remember, the basic premises guiding how search engines will evaluate your content haven&#8217;t changed. As long as you format your <code>lastmod</code> tags properly and are honest about substantial content changes, you should be fine.</p>



<p>The biggest difference is that you now have more sophisticated control, because you&#8217;re no longer pinging search engines about one change through the sitemap but several through tags. This shift from one system to another gives you the opportunity to communicate more effectively with search engines and ensure your content is accurately represented in search results.</p>



<h2 class="wp-block-heading" id="h-conclusion">Conclusion</h2>



<p>The deprecation of the sitemaps ping endpoint is a significant development in the SEO world. It&#8217;s a reminder of the constant evolution of search engine algorithms and the need for webmasters to stay updated with these changes. By understanding these changes and adapting accordingly, you can ensure that your SEO strategy remains effective and your website continues to rank well in search results.</p>
<p>The post <a href="https://seoneurons.com/blog/google-deprecate-sitemaps-ping-endpoint/">Google will deprecate Sitemaps ping endpoint: All You Need to Know.</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seoneurons.com/blog/google-deprecate-sitemaps-ping-endpoint/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Anchor Text in SEO: Best Practices for Better Rankings</title>
		<link>https://seoneurons.com/blog/anchor-text/</link>
					<comments>https://seoneurons.com/blog/anchor-text/#respond</comments>
		
		<dc:creator><![CDATA[Ashok Sihmar]]></dc:creator>
		<pubDate>Fri, 27 Jan 2023 15:19:45 +0000</pubDate>
				<category><![CDATA[Ranking Factors]]></category>
		<guid isPermaLink="false">https://seoneurons.com/blog/?p=12112</guid>

					<description><![CDATA[<p>If you&#8217;re aiming to boost your blog posts to the top of Google&#8217;s search results, there&#8217;s one small detail you can&#8217;t afford to overlook — your anchor text. In simple words, anchor text is the clickable text in a hyperlink that tells readers (and search engines) what they’ll find when they click a link. It&#8217;s &#8230;</p>
<p>The post <a href="https://seoneurons.com/blog/anchor-text/">Anchor Text in SEO: Best Practices for Better Rankings</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If you&#8217;re aiming to boost your blog posts to the top of Google&#8217;s search results, there&#8217;s one small detail you can&#8217;t afford to overlook — your <strong>anchor text</strong>.</p>



<p>In simple words, anchor text is the clickable text in a hyperlink that tells readers (and search engines) what they’ll find when they click a link. It&#8217;s not just about linking pages together; it&#8217;s about giving meaning and direction to your content. A well-optimized anchor text can improve your site&#8217;s SEO performance, enhance user experience, and even build authority across your website.</p>



<p>In this article, we&#8217;ll break down what anchor text is, why it matters so much for SEO, different types you should know, and best practices to make the most out of your internal and external links.</p>



<h2 class="wp-block-heading" id="h-what-is-anchor-text">What is Anchor Text?</h2>



<p>After understanding the importance of links in SEO, let&#8217;s dive into <strong>what anchor text actually means</strong>.</p>



<p>Simply put, <strong>anchor text</strong> is the clickable text that you see in a hyperlink. It’s the part you usually notice because it’s either underlined, colored differently, or both — encouraging you to click on it and move to another page, either on the same website or a completely different one.</p>



<p>Here’s a quick example to make it even clearer:</p>



<pre class="wp-block-code"><code>&lt;a href="https://seoneurons.com/blog/on-page-seo/&gt;On-Page SEO&lt;/a&gt;</code></pre>



<p><em>In the above code, <strong>On-Page SEO</strong> is anchor text linked with <strong>https://seoneurons.com/blog/on-page-seo/</strong>.</em></p>



<p>Pretty simple, right?</p>



<p>The term &#8220;anchor&#8221; makes total sense because this text <strong>anchors</strong> two URLs together — creating a bridge between different resources on the web.</p>



<p>But anchor text isn&#8217;t just limited to website pages. It can also link to downloadable files like PDFs, images, or even documents stored on platforms like Google Drive. So whether you’re hopping between blog posts or downloading a free guide, chances are anchor text made that possible!</p>



<h2 class="wp-block-heading">Why is Anchor Text Important?</h2>



<p>Now that you know what anchor text is, you might be wondering — why does it even matter?</p>



<p>Well, anchor text plays a <strong>huge role</strong> in giving both <strong>users and search engines</strong> important context. When a user clicks on a link, the anchor text acts like a <strong>preview</strong> — telling them what they can expect on the other side. A good anchor text builds trust by setting clear expectations.</p>



<p>But it’s not just about the user experience. <strong>Search engines</strong> like Google also read anchor text carefully. They use it to understand the relationship between the current page and the linked page. In short, the better your anchor text matches the linked content, the better search engines can figure out what your pages are really about.</p>



<p>On the flip side, if your anchor text feels misleading or doesn’t match the linked content, it can create a <strong>poor user experience</strong>. Visitors might bounce off quickly, which sends bad signals to search engines. Over time, this could even hurt your SEO rankings.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="889" height="570" src="https://seoneurons.com/blog/wp-content/uploads/2023/01/anchor-text.png" alt="anchor text example" class="wp-image-12205" style="width:644px;height:auto" srcset="https://seoneurons.com/blog/wp-content/uploads/2023/01/anchor-text.png 889w, https://seoneurons.com/blog/wp-content/uploads/2023/01/anchor-text-768x492.png 768w" sizes="auto, (max-width: 889px) 100vw, 889px" /></figure>
</div>


<p>That’s why smart use of anchor text can do two amazing things at once:</p>



<ul class="wp-block-list">
<li>It builds your readers&#8217; trust, making them feel confident about your content and your brand.</li>



<li>It boosts your SEO efforts by helping search engines index your site properly and understand the value of your pages.</li>
</ul>



<p><strong>In short</strong>:<br>Strong anchor text = Better user experience + Better SEO performance!</p>



<h2 class="wp-block-heading">Different Types of Anchor Text</h2>



<p>Now that you understand why anchor text is important, let’s dive a little deeper.<br><strong>Not all anchor text is created equal</strong> — there are several types you can use depending on the situation. Let’s explore them one by one with examples so you can easily spot them in the wild!</p>



<h3 class="wp-block-heading">Exact Match Anchor Text</h3>



<p>An <strong>exact match</strong> anchor text uses the <strong>targeted keyword</strong> <em>exactly as it is</em>.</p>



<p>For example, if you are linking to a page about &#8220;SEO tools,&#8221; you would use &#8220;SEO tools&#8221; as your anchor text.<br>Here’s a quick example:</p>



<blockquote class="wp-block-quote quote-light is-layout-flow wp-block-quote quote-light-is-layout-flow">
<p>Looking for the best <strong><a class="" href="#">SEO tools</a></strong> to grow your website?</p>
</blockquote>



<p>In this case, the anchor text &#8220;SEO tools&#8221; matches the target keyword perfectly.</p>



<p>⚡ <strong>Pro Tip:</strong><br>While exact match anchor text can be powerful, overusing it might trigger Google&#8217;s spam filters. So, always aim for balance!</p>



<h3 class="wp-block-heading">Generic Anchor Text</h3>



<p><strong>Generic anchor text</strong> doesn’t use any keywords or clear references. Instead, it uses vague phrases that don’t reveal much about the linked page.</p>



<p>Examples include:</p>



<ul class="wp-block-list">
<li>&#8220;Click here&#8221;</li>



<li>&#8220;Read more&#8221;</li>



<li>&#8220;Learn more&#8221;</li>
</ul>



<p>For instance:</p>



<blockquote class="wp-block-quote quote-light is-layout-flow wp-block-quote quote-light-is-layout-flow">
<p><strong><a class="" href="#">Click here</a></strong> to continue reading about SEO basics.</p>
</blockquote>



<p>While generic anchors can sometimes fit naturally into the flow of content, using them too much can <strong>look spammy</strong> and <strong>hurt SEO</strong>. Plus, they don’t help users or search engines understand what the linked page is about.</p>



<h3 class="wp-block-heading">Partial Match Anchor Text</h3>



<p>A <strong>partial match</strong> anchor text includes the <strong>target keyword</strong> along with a few extra words for better context.</p>



<p>For example:</p>



<ul class="wp-block-list">
<li>Get the best deal on <strong><a class="" href="#">cat food</a></strong> and other supplies.</li>



<li>Shop our popular <strong><a class="" href="#">juice and snack gift baskets</a></strong>.</li>
</ul>



<p>Here, &#8220;cat food&#8221; and &#8220;gift baskets&#8221; are the core keywords, but the anchor text naturally includes extra words to make it sound more <strong>friendly</strong> and <strong>helpful</strong>.</p>



<p>Partial match anchors feel more <strong>organic</strong> and are a <strong>great way</strong> to optimize links without being too aggressive.</p>



<h3 class="wp-block-heading">Naked Link Anchor Text</h3>



<p>A <strong>naked link</strong> is when the actual <strong>URL itself</strong> is used as the anchor text — no fancy words or labels.</p>



<p>Example:</p>



<ul class="wp-block-list">
<li><a class="" href="https://www.flipkart.com/">https://www.flipkart.com/</a></li>



<li><a class="" href="https://www.myntra.com/">https://www.myntra.com/</a></li>
</ul>



<p>While this style can be useful for citations or references, <strong>overusing naked links</strong> can make your content look messy and hard to read.<br>So, it’s best to use them <strong>only when absolutely necessary</strong>.</p>



<h3 class="wp-block-heading">Brand Anchor Text</h3>



<p><strong>Brand anchor text</strong> uses the <strong>company or brand name</strong> as the clickable text.</p>



<p>For instance:</p>



<ul class="wp-block-list">
<li>Learn more about <strong><a class="" href="https://seoneurons.com/">SEO Neurons</a></strong>.</li>



<li>Visit <strong><a class="" href="https://seoneurons.com/">seoneurons.com</a></strong> for more tips.</li>
</ul>



<p>Using brand names as anchors helps in several ways:</p>



<ul class="wp-block-list">
<li>Builds <strong>brand recognition</strong> and <strong>authority</strong>.</li>



<li>Boosts <strong>visibility</strong> and helps you rank better for your brand name.</li>



<li>Creates <strong>trust and credibility</strong> with readers.</li>
</ul>



<p>But again, balance is key!<br>Mixing brand anchors with other types (like partial matches or exact matches) keeps your link profile <strong>natural</strong> and <strong>healthy</strong> in Google&#8217;s eyes.</p>



<h2 class="wp-block-heading">How to Optimize Anchor Text for SEO</h2>



<p>Knowing the different types of anchor text is a great start — but that alone won’t shoot your website to the top of Google.<br><strong>You need to optimize how you use anchor text smartly and naturally.</strong><br>Let’s walk through some best practices that will help boost both your <strong>user experience</strong> and <strong>SEO rankings</strong>.</p>



<h3 class="wp-block-heading">1. Make Sure Anchor Text is Clear and Visible</h3>



<p>First things first — make sure your anchor text is easy to spot and clickable.<br>Some website platforms or page builders tuck anchors into the design in weird ways. If users can&#8217;t easily recognize a link, they won’t click it — and search engines might not value it much either.</p>



<p><em>Use a different color, underline, or slight boldness to make links stand out from regular text.</em></p>



<h3 class="wp-block-heading">2. Be Honest with Your Links</h3>



<p>Nobody likes being tricked into clicking something unexpected.<br>Always ensure your link delivers exactly what you promised in the anchor text. If your anchor says &#8220;Best SEO Tools,&#8221; don&#8217;t send users to a random product page!</p>



<p><strong>Trust matters</strong> — not just for your audience but also for Google’s algorithms.</p>



<h3 class="wp-block-heading">3. Keep the Writing Flow Natural</h3>



<p>It’s tempting to cram exact keywords into your anchor text wherever you can.<br>But stuffing awkward phrases breaks the flow and feels robotic.<br>Instead, write <strong>naturally</strong>, like you’re chatting with a friend — and fit your anchor text smoothly into the sentence.</p>



<p>For example, instead of:</p>



<blockquote class="wp-block-quote quote-light is-layout-flow wp-block-quote quote-light-is-layout-flow">
<p>Check our SEO TOOLS FOR BLOGGERS page now!</p>
</blockquote>



<p>Say:</p>



<blockquote class="wp-block-quote quote-light is-layout-flow wp-block-quote quote-light-is-layout-flow">
<p>Check out our collection of the best <strong><a class="" href="#">SEO tools for bloggers</a></strong> to boost your traffic.</p>
</blockquote>



<p>Sounds better, right?</p>



<h3 class="wp-block-heading">4. Ensure Link Relevance</h3>



<p>Your links should always make sense in the context of your content.<br>If you&#8217;re updating an old blog post, don&#8217;t forget to <strong>review</strong> and <strong>refresh</strong> your links, especially if you mentioned time-sensitive stats or trends.</p>



<p><strong>Relevant links</strong> make your content stronger — and <strong>irrelevant ones</strong> can hurt trust and rankings.</p>



<h3 class="wp-block-heading">5. Align with Search Intent</h3>



<p>When you add a link, think about what the reader actually wants.<br>If someone’s reading a beginner’s guide to SEO, don&#8217;t suddenly link them to an advanced technical SEO audit page.<br>Match the <strong>search intent</strong> behind their visit to the content you’re linking.</p>



<p>This small adjustment can massively improve your <strong>engagement</strong>, <strong>click-through rate</strong>, and <strong>time on site</strong>!</p>



<h3 class="wp-block-heading">6. Diversify Your Anchor Text Profile</h3>



<p>A healthy website link profile looks <strong>natural</strong> — meaning it has a mix of different types of anchor text:<br>Exact match, partial match, branded, generic, and even some naked links.</p>



<p>If you only use one type (like exact match keywords all the time), Google might see it as manipulation and penalize you.<br>So, <strong>mix it up</strong> for the best results!</p>



<h3 class="wp-block-heading">7. Keep Anchor Text Short and Sweet</h3>



<p>While it’s important to be descriptive, don&#8217;t turn your anchor text into an essay.</p>



<p>Good rule of thumb:</p>



<ul class="wp-block-list">
<li><strong>Anchor text = 2 to 6 words.</strong></li>



<li>If you need more explanation, leave it for the surrounding text, not inside the link itself.</li>
</ul>



<p>Google reads both the anchor and the nearby words — so <strong>keep anchors focused</strong> and <strong>support with context</strong> around them.</p>



<h3 class="wp-block-heading">8. Choose Relevant Anchor Words</h3>



<p>Anchor text isn’t just about linking — it’s about <strong>signaling relevance</strong> to search engines.<br>Always pick words that <strong>clearly describe</strong> the linked page.</p>



<p><strong>Example:<br></strong><em>Instead of anchoring &#8220;click here&#8221; for an article about content marketing tools, anchor something like &#8220;best content marketing tools&#8221; — it gives both users and Google a clear idea.</em></p>



<h3 class="wp-block-heading">9. Pay Attention to the Surrounding Text</h3>



<p>Remember, Google doesn&#8217;t look at the anchor alone — it reads the <strong>text around</strong> the link too.<br>So make sure your surrounding sentences support what the anchor is about.</p>



<p>If you stuff the same keywords all over your paragraph, it looks unnatural and can trigger over-optimization penalties.<br><em>(Write naturally, weave anchors into context, and let Google (and your readers) easily figure out what the page is about.)</em></p>



<h3 class="wp-block-heading">10. Optimize Image Alt Tags for Anchor Purposes</h3>



<p>Sometimes, images are clickable too — and guess what?<br>Their <strong>alt text</strong> acts like anchor text for SEO!</p>



<p>Good alt text practices:</p>



<ul class="wp-block-list">
<li>Keep it short and descriptive.</li>



<li>Use one primary keyword naturally.</li>



<li>Avoid stuffing or unnecessary words like &#8220;picture of&#8221; or &#8220;image of.&#8221;</li>
</ul>



<p>Example:<br>Instead of &#8220;Image of SEO tools collection,&#8221;<br>Use: <strong>SEO tools for bloggers and marketers.</strong></p>



<p>Alt text helps <strong>search engines</strong> understand your content and <strong>improves accessibility</strong> for screen reader users.</p>



<h3 class="wp-block-heading">11. Avoid Linking to Harmful Sites</h3>



<p>Be careful where you point your links!<br>If you unknowingly link to shady or spammy sites, <strong>Google can punish you</strong> even if your own site is clean.</p>



<p>Here’s how to stay safe:</p>



<ul class="wp-block-list">
<li>Regularly audit your backlinks using tools like <strong>Google Search Console</strong>, <strong>Ahrefs</strong>, or <strong>SEMRush</strong>.</li>



<li>Disavow toxic backlinks through Google&#8217;s Disavow Tool.</li>



<li>Always double-check the reputation of sites before linking out.</li>



<li>Avoid link farms, paid link schemes, and sketchy exchanges.</li>
</ul>



<p>Keeping your link network <strong>healthy and trustworthy</strong> protects your rankings in the long run.</p>



<p>Want to dive deeper? Check out our guide on <strong><a class="" href="https://seoneurons.com/blog/internal-linking/">Internal Linking Best Practices</a></strong> to improve your site&#8217;s connectivity and SEO performance.</p>



<h2 class="wp-block-heading" id="h-faqs">FAQs</h2>



<div class="schema-faq wp-block-yoast-faq-block"><div class="schema-faq-section" id="faq-question-1673971636989"><strong class="schema-faq-question"><strong>Is anchor text necessary for SEO?</strong></strong> <p class="schema-faq-answer">The text that people see and can click on is called the anchor. It is vital for SEO since it provides search engines with important information about the linked page&#8217;s content.</p> </div> <div class="schema-faq-section" id="faq-question-1674402475181"><strong class="schema-faq-question"><strong><strong>What does a rich anchor text actually mean?</strong></strong></strong> <p class="schema-faq-answer">A rich anchor text is any anchor text that contains target keywords. It&#8217;s important to avoid overusing these as this can indicate to Google that your article has been overly optimized.</p> </div> </div>



<p></p>
<p>The post <a href="https://seoneurons.com/blog/anchor-text/">Anchor Text in SEO: Best Practices for Better Rankings</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seoneurons.com/blog/anchor-text/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SEO Copywriting &#8211; Ultimate Guide for Organic Traffic and Leads</title>
		<link>https://seoneurons.com/blog/seo-copywriting/</link>
					<comments>https://seoneurons.com/blog/seo-copywriting/#comments</comments>
		
		<dc:creator><![CDATA[Ashok Sihmar]]></dc:creator>
		<pubDate>Mon, 11 Apr 2022 05:34:00 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Blogger-SEO]]></category>
		<category><![CDATA[WordPress SEO]]></category>
		<guid isPermaLink="false">https://seoneurons.com/blog/?p=8291</guid>

					<description><![CDATA[<p>Organic traffic spreads a new life to the blog or website, and if you can convert the traffic to customers/users, it will boost your business. SEO copywriting can do this for you. This article will discuss how to do SEO copywriting to get organic traffic to your website. SEO copywriting is more or less similar &#8230;</p>
<p>The post <a href="https://seoneurons.com/blog/seo-copywriting/">SEO Copywriting &#8211; Ultimate Guide for Organic Traffic and Leads</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Organic traffic spreads a new life to the blog or website, and if you can convert the traffic to customers/users, it will boost your business. SEO copywriting can do this for you. This article will discuss <strong>how to do SEO copywriting</strong> to get organic traffic to your website.</p>



<p>SEO copywriting is more or less similar to general copywriting. You&#8217;ve to understand the mindset of the user and interpreter the content according to their need. Usually, it is interesting to study human behavior and implement things accordingly.</p>



<p>And along with this, you&#8217;ve to keep a few extra things in mind while writing the content for a blog or website, like how search engines understand the text and how you can deliver information to users and search engines as well.</p>



<p class="has-white-color has-vivid-purple-background-color has-text-color has-background">Here I want to explain a psychological theory. In psychology, you can study human behavior and predict his future actions. In the same way, we can predict user behavior using various information provided by the user. Don&#8217;t think you don&#8217;t have the user&#8217;s information, but you&#8217;ve. I&#8217;ll explain it to you in the keyword research part of this content.</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="576" src="https://seoneurons.com/blog/wp-content/uploads/2022/04/seo-copywriting-1024x576.png" alt="SEO Copywriting" class="wp-image-11352" srcset="https://seoneurons.com/blog/wp-content/uploads/2022/04/seo-copywriting-1024x576.png 1024w, https://seoneurons.com/blog/wp-content/uploads/2022/04/seo-copywriting-300x169.png 300w, https://seoneurons.com/blog/wp-content/uploads/2022/04/seo-copywriting-768x432.png 768w, https://seoneurons.com/blog/wp-content/uploads/2022/04/seo-copywriting-390x220.png 390w, https://seoneurons.com/blog/wp-content/uploads/2022/04/seo-copywriting.png 1280w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>Your writing should be easy, informative, and keep engaging users to read the content of your website. If the website satisfies users for their queries, it will build trust with the users.</p>



<h2 class="wp-block-heading" id="h-what-is-seo-copywriting">What is SEO Copywriting?</h2>



<p>Content that ranks high in the search result drives high volume organic traffic and influences users to take the desired action. This could happen when you understand SEO and website visitors&#8217; behavior. SEO Copywriting has the following two aspects.</p>



<div class="wp-block-group has-background" style="background:linear-gradient(265deg,rgb(122,220,180) 0%,rgb(242,232,232) 47%)"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<p>A good copy should fulfill these two aspects.</p>



<ul class="wp-block-list"><li>It should be SEO-friendly and drive organic traffic to the blog.</li><li>The content must have the potential to convert your readers to take action.</li></ul>
</div></div>



<p>The content that satisfies the above conditions will not only drive quality traffic for your website but also generate leads for your business. To influence your readers to take action, you have to understand the reader&#8217;s needs and describe to them &#8220;how your product or service can help&#8221;.</p>



<p>There is no use for a blog that drives substantial organic traffic but does not have the potential to convert it to the customer. </p>



<h2 class="wp-block-heading">How to do SEO Copywriting?</h2>



<p>Before proceeding to the content, you&#8217;ve to check the <a title="What is On-Page SEO Explained" href="https://seoneurons.com/blog/on-page-seo/">On-Page SEO</a> and user experience. Here we&#8217;re talking about the technical SEO of the website. An excellent technical SEO website is easily understandable for search engines.</p>



<p>In the user experience, you&#8217;ve to focus on visibility, the structure of the landing page, and also on the website flow. The website should be easy to understand. </p>



<p>The first part of SEO copywriting is Keyword Research. This is a crucial step, and you must choose a keyword according to the action you need.</p>



<h2 class="wp-block-heading">Keyword Research</h2>



<p>Keyword research is essential to creating SEO-friendly content. Choose keywords according to the authority of your website. Suppose your website is brand new, and you&#8217;re targeting high difficultly-level keywords, then the keyword will never rank as google has ample content with the quality. For a new blog, you should focus on long-tail keywords.</p>



<p class="has-background" style="background-color:#badcf0">High-difficulty keywords are those keywords on which popular blogs and websites want to rank, for example, SEO, YouTube Videos, Best Computer, etc.</p>



<h3 class="wp-block-heading">Plan a List of Keywords</h3>



<p>Every business has certain products to sell or wants to collect information from interested users. So, you&#8217;ve to create a list of keywords according to the Business website. The keywords list will help you target and drive traffic to the website.</p>



<p>You&#8217;ve to analyze how users are making queries for your business-related products. You&#8217;ve to cover all FAQs related to products or services. You can use ahrefs or any other SEO tool to find keyword difficulty and search volume.</p>



<h3 class="wp-block-heading">Keyword Intent</h3>



<p><strong>Keyword intent is actually the user intent</strong> that helps us understand what a user wants. To create the best copy of the content for your website, you&#8217;ve to understand the user behavior. Suppose he is looking for the best SEO service provider, then he may need SEO services. We divide user intent into four parts: &#8211;</p>



<div class="wp-block-group has-background" style="background-color:#c1e6d7"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<ul class="wp-block-list"><li><strong>Informational intent</strong>:- The users make queries like &#8220;how to, what is, when, etc.&#8221; type content.</li><li><strong>Navigational intent</strong>: includes site name with queries like &#8220;Blogger SEO seoneurons, IAS Books Amazon, etc.</li><li><strong>Commercial intent: </strong>The user wants to buy something and do research for choosing the right products for their need and similar things.</li><li><strong>Transactional&nbsp;intent</strong>: After completing the research and finally searching for a particular product, like, for example, <em>buy Shankar IAS Environment Book</em>, <em>Dell 15Q XX Laptop</em>.</li></ul>
</div></div>



<p>Every keyword carries user intent, mostly long-tail keywords. And these keywords will help you in SEO copywriting. Keyword intent helps us in understanding the users&#8217; behavior.</p>



<p>You may think about how to find these keywords? Many free and premium tools are available for keyword research like Ubersuggest, ahrefs, GSC, Bing, etc. There are other free keyword tools as well.</p>



<h2 class="wp-block-heading">Understand User Behaviour.</h2>



<p>As we already discussed, keyword intent helps you analyze the user&#8217;s intention, whether he wants to get information, research to buy, or buy the content.</p>



<p>In the first two cases, you may help the user with a blog post, but no blog post will rank when the user is searching for the final product. Only pages with products will rank for these keywords.</p>



<h2 class="wp-block-heading">Create a Quality Content.</h2>



<p>Quality content takes time but is worth it. In the first stage, you don&#8217;t have to worry about the language or how to start, or what the words should be. You just keep writing; or write on a paper or blog, do that. </p>



<p>It will end up with a skeleton for your content. Revise the content, fill the gap, and <a data-wpil="url" href="https://seoneurons.com/blog/internal-linking/">interlink</a> the content with already available content.</p>



<h3 class="wp-block-heading">Structure the content</h3>



<p>In the first instance, start writing the content in layman&#8217;s language. Keep your language simple so everybody can understand. Divide content into heading and subheadings to keep users engaged.</p>



<div class="wp-block-image"><figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="733" height="674" src="https://seoneurons.com/blog/wp-content/uploads/2022/04/inverted-graph.png" alt="SEO Copywriting Inverted Graph" class="wp-image-11353" srcset="https://seoneurons.com/blog/wp-content/uploads/2022/04/inverted-graph.png 733w, https://seoneurons.com/blog/wp-content/uploads/2022/04/inverted-graph-300x276.png 300w" sizes="auto, (max-width: 733px) 100vw, 733px" /></figure></div>



<p>Your content should be inverted pyramid type. Provide critical information in the header part of the content and relative things in the later part.</p>



<h3 class="wp-block-heading">Introduction in the copy</h3>



<p>The first paragraph of your blog explains what you&#8217;ll discuss in the content. Hence, it becomes critical to explain what you&#8217;ll be discussing and how you&#8217;ll help users and satisfy them. If you&#8217;re not able to clear the topic of the content, most likely that the user will leave the website.</p>



<p>Yoast and other SEO tools recommend keywords in the first paragraph. They want to explain that clear your subject line at the top of the content so a low bounce rate will be there.</p>



<h3 class="wp-block-heading" id="h-optimize-the-title-of-the-content">Optimize the Title of the content</h3>



<p>After completing the content, you&#8217;ve to set a natural title for your blog post. For example, your final aim is to sell a product and describe the benefit of such products. Try to explain to users how the product enhances their quality of life. Don&#8217;t try to sell; try to smooth their life.</p>



<p>The Title should be attractive, and the maximum length should be 55-60 characters or 580px. If you cross this length, the complete Title will not be visible in the results and may miss the critical point.</p>



<h3 class="wp-block-heading">Enhance Readability of the Content</h3>



<p>Your content should be readable. Analyze how much your readers can read without getting bored. You&#8217;ve to make your content enjoyable. </p>



<p>The following tips may help you in creating user-friendly content.</p>



<ul class="wp-block-list"><li>Plan your topic and divide it into headings and subheadings.</li><li>Do not use long paragraphs. </li><li>Use flow charts to convey information,</li><li>Proper user of block editors.</li><li><a data-wpil="url" href="https://seoneurons.com/blog/internal-linking/">Interlink the content</a></li><li>Write in easy language, so that maximum users can read the content.</li></ul>



<p>All these steps will help you create excellent content for your website that will be user-friendly and Search Engine Optimized.</p>



<h2 class="wp-block-heading">Conclusion</h2>



<p>In this article, we understood how to create SEO-friendly content. But we can also understand SEO content after understanding the final aim of Google. Search Engines like Google aim to provide a good user experience by delivering the desired information/product/service.  </p>
<p>The post <a href="https://seoneurons.com/blog/seo-copywriting/">SEO Copywriting &#8211; Ultimate Guide for Organic Traffic and Leads</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seoneurons.com/blog/seo-copywriting/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>How to Create a Contact Us Page with HTML and Google Sheets</title>
		<link>https://seoneurons.com/blog/create-contact-us-page/</link>
					<comments>https://seoneurons.com/blog/create-contact-us-page/#comments</comments>
		
		<dc:creator><![CDATA[Ashok Sihmar]]></dc:creator>
		<pubDate>Tue, 22 Feb 2022 08:14:00 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<guid isPermaLink="false">https://seoneurons.com/blog/?p=12925</guid>

					<description><![CDATA[<p>User interface and user experience are the most important parts of a website. Suppose your visitor wants to communicate with you and is willing to share feedback. Or You run a business and A &#8220;Contact Us&#8221; page is a critical component of any website. It provides a direct line of communication between you and your &#8230;</p>
<p>The post <a href="https://seoneurons.com/blog/create-contact-us-page/">How to Create a Contact Us Page with HTML and Google Sheets</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>User interface and user experience are the most important parts of a website. Suppose your visitor wants to communicate with you and is willing to share feedback. Or You run a business and </p>



<p>A &#8220;Contact Us&#8221; page is a critical component of any website. It provides a direct line of communication between you and your visitors, customers, or potential clients. Whether you&#8217;re running a blog, an online store, a non-profit organization, or any other type of website, a &#8220;Contact Us&#8221; page allows your audience to reach out to you with their questions, feedback, or opportunities.</p>



<p>However, setting up a &#8220;Contact Us&#8221; page can seem daunting, especially if you want to store and manage the messages you receive in an organized way. That&#8217;s where this tutorial comes in. We&#8217;ll show you how to create a &#8220;Contact Us&#8221; page using HTML and CSS for the front end, and Google Sheets and Google Apps Script for the back end. This will allow you to collect messages from users and store them directly into a Google Sheet, making it easy to manage and respond to your messages.</p>



<h2 class="wp-block-heading" id="h-step-1-creating-the-html-form">Step 1: Creating the HTML Form</h2>



<p>First, let&#8217;s create the HTML form that users will fill out. We&#8217;ll include fields for the user&#8217;s name, email, and message. We&#8217;ll also add a submit button. Here&#8217;s the code:</p>



<pre class="wp-block-code"><code>&lt;form id="submit-to-google-sheet" name="submit-to-google-sheet"&gt;
    &lt;label for="name"&gt;Name:&lt;/label&gt;
    &lt;input type="text" id="name-sn-1" name="name" required&gt;&lt;br&gt;
    &lt;label for="email"&gt;Email:&lt;/label&gt;
    &lt;input type="email" id="email-sn" name="email" required&gt;&lt;br&gt;
    &lt;label for="message"&gt;Message:&lt;/label&gt;
    &lt;textarea cols="25" id="message-sn" name="message" required&gt;&lt;/textarea&gt;&lt;br&gt;
    &lt;button id="submit-button-sn" type="submit" value="Send"&gt;Send&lt;/button&gt;
&lt;/form&gt;

&lt;div id="sending-message" style="display: none;"&gt;Please wait, Your message is being sent...&lt;/div&gt;
&lt;div id="success-message" style="display: none;"&gt;Your message has been sent. Thank you!&lt;/div&gt;</code></pre>



<h2 class="wp-block-heading" id="h-step-2-styling-the-form-with-css">Step 2: Styling the Form with CSS</h2>



<p>Next, we&#8217;ll add some CSS to make our form look nice. We&#8217;ll style the form, labels, input fields, button, and messages. Here&#8217;s the CSS code:</p>



<pre class="wp-block-code"><code>&lt;style&gt;#submit-to-google-sheet{ width: auto; max-width: 600px; margin: 0 auto; padding: 20px 50px 20px 23px; background-color: #f8f8f8; border: 1px solid #ddd; border-radius: 5px; box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1); transition: all 0.3s ease;} #submit-to-google-sheet:hover{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);} #submit-to-google-sheet label{ display: block; margin-bottom: 5px; font-weight: bold; color: #333; font-size: 1.1em;} #submit-to-google-sheet input, #submit-to-google-sheet textarea{ width: 100%; padding: 10px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 3px; font-size: 1em; transition: border 0.3s ease;} #submit-to-google-sheet input:focus, #submit-to-google-sheet textarea:focus{ border-color: #007BFF; outline: none;} #submit-to-google-sheet button{ padding: 10px 20px; background-color: #007BFF; color: #fff; border: none; border-radius: 3px; cursor: pointer; font-size: 1em; transition: background-color 0.3s ease;} #submit-to-google-sheet button:hover{ background-color: #0056b3;} #sending-message, #success-message{ padding: 10px; border-radius: 3px; margin-bottom: 20px; transition: all 0.3s ease;} #sending-message{ background-color: #ffcc00; color: #333;} #success-message{ background-color: #28a745; color: #fff;} @media (max-width: 600px){ #submit-to-google-sheet{ box-shadow: none; border: none;} #submit-to-google-sheet label{ font-size: 0.9em;} #submit-to-google-sheet input, #submit-to-google-sheet textarea{ font-size: 0.8em;} #submit-to-google-sheet button{ font-size: 0.8em;}} &lt;/style&gt;</code></pre>



<p>This will </p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="948" height="541" src="https://seoneurons.com/blog/wp-content/uploads/2023/07/contact-us-form.png" alt="contact us form using google sheet" class="wp-image-12927" srcset="https://seoneurons.com/blog/wp-content/uploads/2023/07/contact-us-form.png 948w, https://seoneurons.com/blog/wp-content/uploads/2023/07/contact-us-form-768x438.png 768w" sizes="auto, (max-width: 948px) 100vw, 948px" /></figure>



<h2 class="wp-block-heading">Step 3: Setting Up Google Sheets and Google Apps Script</h2>



<p>This step involves creating a new Google Sheets document, writing a Google Apps Script to handle form submissions, and deploying the script as a web app.</p>



<h3 class="wp-block-heading">3.1 Creating a New Google Sheets Document</h3>



<p>First, you&#8217;ll need to create a new Google Sheets document to store the messages. Here&#8217;s how:</p>



<ol class="wp-block-list">
<li>Go to Google Sheets (sheets.google.com).</li>



<li>Click on &#8220;+ New spreadsheet&#8221; to create a new document.</li>



<li>Name the spreadsheet something like &#8220;Contact Form Responses&#8221;.</li>
</ol>



<h3 class="wp-block-heading">3.2 Writing the Google Apps Script</h3>



<p>Next, you&#8217;ll write a Google Apps Script to handle form submissions. This script will be triggered whenever a user submits the form on your &#8220;Contact Us&#8221; page.</p>



<p>Here&#8217;s how to create the script:</p>



<ol class="wp-block-list">
<li>From your Google Sheets document, click on &#8220;Extensions&#8221; &gt; &#8220;Apps Script&#8221;.</li>



<li>Delete any code in the script editor and replace it with the following:</li>
</ol>



<pre class="wp-block-code"><code>function doPost(e) {
    var params = e.parameter;
    var name = params.name;
    var email = params.email;
    var message = params.message;
  
    // Get current date and time
    var now = new Date();
    var timestamp = Utilities.formatDate(now, "IST", "yyyy-MM-dd HH:mm:ss");
  
    // Store data in Google Sheet
    var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
    sheet.appendRow(&#91;timestamp, name, email, message]);
  
    // Send email - Comment out lines below to send email
    // var emailBody = 'You received a new message from ' + name + ' (' + email + ') at ' + timestamp + ':\n\n' + message;
    // MailApp.sendEmail({
    //   to: 'Provide_YOUR_EMAIL_ADDRESS', 
    //   subject: 'New message',
    //   body: emailBody,
    // });
  
    return ContentService.createTextOutput(JSON.stringify({ 'result': 'success' })).setMimeType(ContentService.MimeType.JSON);
  }
  </code></pre>



<ol class="wp-block-list" start="3">
<li>Click on &#8220;File&#8221; &gt; &#8220;Save&#8221; and name your project something like &#8220;Contact Form Script&#8221;.</li>
</ol>



<h3 class="wp-block-heading">3.3 Setting Up a Trigger</h3>



<ol class="wp-block-list">
<li>Click on the clock icon from the Apps Script editor, which represents &#8220;Triggers&#8221;. This will open the &#8220;Project triggers&#8221; page.</li>



<li>Click on &#8220;+ Add Trigger&#8221; at the bottom right of the page.</li>



<li>Under &#8220;Choose which function to run&#8221;, select <code>doPost</code> from the dropdown menu.</li>



<li>Under &#8220;Select event type&#8221;, choose &#8220;On form submit&#8221;.</li>



<li>Click &#8220;Save&#8221;.</li>
</ol>



<p>You&#8217;ll be prompted to authorize the script with your Google account. This is necessary because the script needs permission to append rows to your Google Sheets document and to send emails on your behalf.</p>



<p>Here&#8217;s how to authorize the script:</p>



<ol class="wp-block-list">
<li>A dialog box will appear saying, &#8220;Authorization required&#8221;. Click &#8220;Review Permissions&#8221;.</li>



<li>Choose your Google account.</li>



<li>A message will pop up on your computer screen: &#8220;This app isn&#8217;t verified&#8221;. Click &#8220;Advanced&#8221; and then &#8220;Go to Project Name (unsafe)&#8221;.</li>



<li>Click &#8220;Allow&#8221; to give the script the necessary permissions.</li>
</ol>



<p>Now, whenever a user submits the form on your &#8220;Contact Us&#8221; page, the <code>doPost</code> function will be triggered, and the user&#8217;s message will be stored in your Google Sheets document.</p>



<p>After setting up the trigger and authorizing the script, you can proceed to deploy the script as a web app, as described in the previous message.</p>



<h3 class="wp-block-heading">3.4 Deploying the Script as a Web App</h3>



<p>Finally, you&#8217;ll deploy your script as a web app. This will give you a URL that you can use to trigger the script.</p>



<p>Here&#8217;s how to deploy the script:</p>



<ol class="wp-block-list">
<li>From the Apps Script editor, click on &#8220;Publish&#8221; &gt; &#8220;Deploy as web app&#8221;.</li>



<li>Under &#8220;Project version&#8221;, select &#8220;New&#8221; and write a version description like &#8220;Initial version&#8221;.</li>



<li>Under &#8220;Execute the app as&#8221;, select &#8220;Me (your email)&#8221;.</li>



<li>Under &#8220;Who has access to the app&#8221;, select &#8220;Anyone, even anonymous&#8221;. This allows users who aren&#8217;t logged into a Google account to submit the form.</li>



<li>Click &#8220;Deploy&#8221;.</li>



<li>You&#8217;ll see a message saying &#8220;Authorization required&#8221;. Click &#8220;Review Permissions&#8221;, select your account, and grant the necessary permissions.</li>



<li>You&#8217;ll then see a message saying &#8220;This app isn&#8217;t verified&#8221;. Click &#8220;Advanced&#8221; and then &#8220;Go to Contact Form Script (unsafe)&#8221;.</li>



<li>Click &#8220;Allow&#8221; to grant the necessary permissions.</li>



<li>You&#8217;ll then see a dialog box with the URL of your web app. Copy this URL and save it somewhere &#8211; you&#8217;ll need it in the next step.</li>
</ol>



<p>And that&#8217;s it! You&#8217;ve now set up Google Sheets and Google Apps Script to handle form submissions from your &#8220;Contact Us&#8221; page.</p>



<h2 class="wp-block-heading" id="h-step-4-connecting-the-html-form-to-google-sheets">Step 4: Connecting the HTML Form to Google Sheets</h2>



<p>Finally, we&#8217;ll use JavaScript to connect our HTML form to Google Sheets. When the form is submitted, we&#8217;ll send a POST request to our Apps Script web app, which will then store the data in Google Sheets. Here&#8217;s the JavaScript code:</p>



<pre class="wp-block-code"><code>&lt;script&gt;
    var scriptURL = 'https://script.google.com/macros/s/YOUR_SCRIPT_ID/exec'
    var form = document.forms&#91;'submit-to-google-sheet']
    var successMessage = document.getElementById('success-message');
    var sendingMessage = document.getElementById('sending-message');

    form.addEventListener('submit', function(e) {
        e.preventDefault()
        form.style.display = 'none'; // hide the form immediately
        sendingMessage.style.display = 'block'; // show the sending message
        fetch(scriptURL, { method: 'POST', body: new FormData(form) })
            .then(function(response) {
                console.log('Success!', response)
                sendingMessage.style.display = 'none'; // hide the sending message
                successMessage.style.display = 'block'; // show the success message
            })
            .catch(function(error) {
                console.error('Error!', error.message)
                form.style.display = 'block'; // show the form again in case of error
                sendingMessage.style.display = 'none'; // hide the sending message
            })
    })
&lt;/script&gt;</code></pre>



<p>And that&#8217;s it! You now have a &#8220;Contact Us&#8221; page that collects user messages and stores them directly into a Google Sheet. Happy coding!</p>



<p>Please note that you&#8217;ll need to replace <code>'https://script.google.com/macros/s/YOUR_SCRIPT_ID/exec'</code> with the URL of your own Apps Script web app.</p>
<p>The post <a href="https://seoneurons.com/blog/create-contact-us-page/">How to Create a Contact Us Page with HTML and Google Sheets</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seoneurons.com/blog/create-contact-us-page/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>What is PageRank, and its importance for SEO 2024?</title>
		<link>https://seoneurons.com/blog/pagerank/</link>
					<comments>https://seoneurons.com/blog/pagerank/#comments</comments>
		
		<dc:creator><![CDATA[Ashok Sihmar]]></dc:creator>
		<pubDate>Mon, 30 Aug 2021 08:36:48 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Blogger-SEO]]></category>
		<category><![CDATA[WordPress SEO]]></category>
		<guid isPermaLink="false">https://seoneurons.com/blog/?p=4518</guid>

					<description><![CDATA[<p>Many factors contribute to a website&#8217;s ranking, such as content quality, website EEAT score, backlink profile, brand popularity, etc. You may have come across terms like domain authority, page authority, or PageRank. If not, don&#8217;t worry. We&#8217;ll explain these concepts in this article. Page authority is crucial for ranking your content in search results. So, &#8230;</p>
<p>The post <a href="https://seoneurons.com/blog/pagerank/">What is PageRank, and its importance for SEO 2024?</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Many factors contribute to a website&#8217;s ranking, such as content quality, <a href="https://seoneurons.com/blog/eat-seo/">website EEAT score</a>, backlink profile, brand popularity, etc. You may have come across terms like domain authority, page authority, or PageRank. If not, don&#8217;t worry. We&#8217;ll explain these concepts in this article. </p>



<p>Page authority is crucial for ranking your content in search results. So, let&#8217;s delve into what Google PageRank is, how it works, and whether it&#8217;s still relevant in 2024. We&#8217;ll also discuss how to improve the PageRank of a website.</p>



<h2 class="wp-block-heading" id="h-what-is-google-pagerank-and-page-authority">What is Google PageRank and Page Authority?</h2>



<p>Page authority is a measure of a page&#8217;s value, influencing how the content on the page appears in search results. The term &#8220;page authority&#8221; was coined by Moz, a leading SEO company. They define page authority based on backlinks or off-page SEO of the content only. On the other hand, PageRank considers a variety of essential factors.</p>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="1280" height="720" src="https://seoneurons.com/blog/wp-content/uploads/2023/07/google-pagerank.png" alt="Google PageRank" class="wp-image-12870" srcset="https://seoneurons.com/blog/wp-content/uploads/2023/07/google-pagerank.png 1280w, https://seoneurons.com/blog/wp-content/uploads/2023/07/google-pagerank-768x432.png 768w, https://seoneurons.com/blog/wp-content/uploads/2023/07/google-pagerank-390x220.png 390w" sizes="auto, (max-width: 1280px) 100vw, 1280px" /></figure>
</div>


<p>While it&#8217;s true that page authority can be increased by providing external site backlinks to a specific page. But for PageRank, it&#8217;s not the only determinant. Other factors contribute to it, including:</p>



<ul class="wp-block-list">
<li><strong>Content Quality:</strong> The content should cover all aspects of the subject.</li>



<li><strong>Website structure</strong>: A well-structured website is easier for search engines to crawl and index.</li>



<li><strong>Internal backlink to the content</strong>: Links within your website can help distribute PageRank.</li>



<li><a href="https://seoneurons.com/blog/technical-seo/html5-best-practices/">HTML5 semantic tags</a>: These help search engines understand the content and context of your website.</li>



<li><a href="https://seoneurons.com/blog/technical-seo/schema-markup/"><strong>Schema Markup</strong></a>: This is a type of microdata that makes it easier for search engines to parse and interpret your website&#8217;s information.</li>



<li><strong>Off-Page SEO</strong>: involves activities that drive traffic and link juice to your website from other sites.</li>
</ul>



		<div class="stream-item stream-item-in-post stream-item-in-post-1">
		</div>
	



<h2 class="wp-block-heading" id="h-how-pagerank-was-is-calculated">How PageRank was/is Calculated?</h2>



<p>Google formulated a complex algorithm called PageRank to rank websites in its search results. It&#8217;s based on a mathematical formula, but let&#8217;s try to understand it in simpler terms.</p>



<p>The formula to calculate PageRank is </p>



<p><strong>PR(A) = (1-d) + d (PR(T1)/C(T1) + … + PR(Tn)/C(Tn))</strong></p>



<p>where:</p>



<ul class="wp-block-list">
<li>PR(A) is the Page Rank of page A</li>



<li>PR(T1) is the Page Rank of pages T1 that link to page A</li>



<li>C(T1) is the number of outbound links on page T1</li>



<li>d is a damping factor which can be set between 0 and 1</li>
</ul>



<p>PageRank scores range from 0 to 10, where 0 being the lowest and 10 being the highest. Some people believe PageRank is no longer used, but all the parameters used in its formula are still in use.</p>



<p>In 2016, Google discontinued the PageRank tool. However, in the world of SEO, it is believed that Google still uses PageRank to rank websites in search results. This time Google developed a more advanced formula, which is not publicly available, but its factors are. Some of these factors responsible for ranking a website are</p>



<ul class="wp-block-list">
<li>Backlinks from Reputed websites.</li>



<li>Page Experience that included Core Web Vitals, Content, Internal Linking, etc.</li>



<li>Secure Connection.</li>



<li>EEAT Score of website.</li>



<li>Quality of the Content.</li>



<li>Code structure &#8211; like proper use of HTML5.2 semantic. Schema Markup.</li>
</ul>



<p>Moz also refers to a similar concept as Page Authority.</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-2">
		</div>
	



<h3 class="wp-block-heading" id="h-pagerank-a-layman-s-explanation"><strong>PageRank: A Layman&#8217;s Explanation</strong></h3>



<p>Let&#8217;s break down the concept of PageRank into simpler terms. Imagine you&#8217;re at a party with a group of people. Some are very popular and have many of friends at the party, while others are less well-known and have fewer friends present.</p>



<p>In this scenario, PageRank is like a popularity score. The people with many friends (or links from other websites) have a high PageRank. The more popular the friends (or the higher the PageRank of the websites linking to them), the higher their own PageRank score becomes.</p>



<p>Now, let&#8217;s say one of the popular people at the party points at you and says, &#8220;Hey, this person is really cool!&#8221; Suddenly, you become more popular because a well-known person vouched for you. This is similar to how a backlink from a high PageRank website can increase your own PageRank.</p>



<p>However, popularity isn&#8217;t everything. If a popular person at the party starts recommending everyone, their recommendations become less meaningful. Similarly, if a website links to too many other sites, the value of each individual link decreases. This concept is reflected in the PageRank formula through the damping factor (d) and the number of outbound links on a page (C(T1)).</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-3">
		</div>
	



<p>In summary, PageRank measures a web page&#8217;s popularity and credibility based on the quantity and quality of its backlinks.</p>



<h2 class="wp-block-heading">Is PageRank Still Relevant in 2024?</h2>



<p>Yes, PageRank is still relevant in 2024, even after major Google Search updates. Focus on creating quality content and obtaining genuine backlinks to improve your PageRank.</p>



<h2 class="wp-block-heading">Tips for Improving PageRank</h2>



<p>Here are some tips to keep in mind while creating content for your website:</p>



<ol class="wp-block-list">
<li><strong>Write high-quality content</strong>: Quality content is the cornerstone of SEO. Ensure your content is informative, engaging, and written in a language your audience can understand. It will attract natural backlinks and help us in building a strong PageRank.</li>



<li><strong>Generate backlinks for off-page SEO</strong>: These are backlinks from high-quality content within the same niche.</li>



<li><strong>Use an HTML5-friendly</strong> theme: HTML5 allows you to declare all webpage sections like header, main, article (main content), and footer section. This makes it easier for search engines to understand and process your website&#8217;s data.</li>
</ol>



<h3 class="wp-block-heading">High-Quality Content</h3>



<p>Quality content is the backbone of any successful website. It&#8217;s not just about writing well &#8211; it&#8217;s about providing value to your readers. Make sure your content is comprehensive, engaging, and easy to understand. Remember, if your readers find your content useful, they&#8217;re more likely to share it, which can help improve your PageRank.</p>



<p>We have a dedicated article with awesome tips on <a href="https://seoneurons.com/blog/seo-friendly-content/">How to write SEO-friendly content</a>.</p>



<h3 class="wp-block-heading">Backlinks are essential, and you should get and provide backlinks.</h3>



<p>Backlinks inform the search engine about your website. Suppose you created a website with high-quality content. It may rank on low-competition keywords but not otherwise. You need to get some quality backlinks to get content in search results.</p>



<p>The digital web is similar to the spider web. Your website is a part of that web. If the site is not linked with other websites, then the web is weak or not a part of a strong web network.</p>



<p>Backlinks play a crucial role in SEO. They signal to search engines that your website is a reliable source of information. However, not all backlinks are created equal. It&#8217;s important to obtain high-quality backlinks from reputable websites in your niche. Remember, quality trumps quantity when it comes to backlinks.</p>



<h3 class="wp-block-heading">Use HTML5 for better Page Structure.</h3>



<p>HTML5 offers a more structured approach to web design, which can significantly improve your website&#8217;s SEO. By using HTML5, you can clearly define different sections of your webpage, such as the header, main content, and footer. This makes it easier for search engines to understand and index your content, which can help improve your PageRank.</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-4">
		</div>
	



<h2 class="wp-block-heading">Final Words</h2>



<p>Understanding and improving PageRank is crucial for SEO. While Page Authority focuses on off-page SEO, PageRank considers all factors, including on-page and off-page SEO. By focusing on creating high-quality content, obtaining quality backlinks, and structuring your website effectively, you can improve your PageRank and, ultimately, your website&#8217;s visibility in search results.</p>



<p>If you have any questions or feedback, feel free to leave a comment below.</p>
<p>The post <a href="https://seoneurons.com/blog/pagerank/">What is PageRank, and its importance for SEO 2024?</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seoneurons.com/blog/pagerank/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>How to Create a Business Email Address for Free in 2023</title>
		<link>https://seoneurons.com/blog/create-free-business-email-address/</link>
					<comments>https://seoneurons.com/blog/create-free-business-email-address/#comments</comments>
		
		<dc:creator><![CDATA[Ashok Sihmar]]></dc:creator>
		<pubDate>Tue, 08 Jun 2021 11:06:22 +0000</pubDate>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Business-Email]]></category>
		<category><![CDATA[Gmail]]></category>
		<guid isPermaLink="false">https://seoneurons.com/blog/?p=5789</guid>

					<description><![CDATA[<p>A business Email Address provides a brand identity to your website or blog. You can choose any alias for your business name, like admin@example.com, for a domain owner of example.com. This article discusses how to create free Business email addresses using Gmail. To create a free business email address, you must own a domain name, &#8230;</p>
<p>The post <a href="https://seoneurons.com/blog/create-free-business-email-address/">How to Create a Business Email Address for Free in 2023</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>A business Email Address provides a brand identity to your website or blog. You can choose any alias for your business name, like admin@example.com, for a domain owner of example.com. This article discusses how to create free Business email addresses using Gmail. </p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1280" height="720" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/create-free-business-email-using-gmail.png" alt="create Free Business Email Address using Gmail" class="wp-image-5878" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/create-free-business-email-using-gmail.png 1280w, https://seoneurons.com/blog/wp-content/uploads/2021/06/create-free-business-email-using-gmail-768x432.png 768w, https://seoneurons.com/blog/wp-content/uploads/2021/06/create-free-business-email-using-gmail-390x220.png 390w" sizes="auto, (max-width: 1280px) 100vw, 1280px" /></figure>
</div>


<p>To create a free business email address, you must own a domain name, and if you don&#8217;t have one, you can buy it from Namecheap or other <a href="https://seoneurons.com/blog/best-domain-name-registrars/">domain name providers</a> that provide email forwarding services with the domain name. But if you already have one, follow this guide.</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-1">
		</div>
	



<h2 class="wp-block-heading" id="h-is-it-possible-to-create-a-free-business-email-address">Is it possible to create a free business email address?</h2>



<p>The answer to this question is yes. You can create a free business email using the hosting provider or only the domain name. This article will discuss free methods to create email for your business using Gmail or hosting.</p>



<p>If you create a business email using the hosting provider, all the email&#8217;s control is on you. You can decide the total storage of the email account and the size of attachments, which means you are the email provider and can enjoy all the premium services of the business email address.</p>



<p>When you create a free business email on Gmail using the domain name only, there are serval limits attachment can&#8217;t be larger than 20MB, the total storage limit is 15GB.</p>



<p>We can create free Business email addresses using Gmail and cPanel. Let&#8217;s understand them one by one.</p>



<p>You can also create a Zoho account. Zoho allows you to create up to 5 Business email addresses for free. But there are some limitations like storage limitations, synchronous, etc.</p>



<h2 class="wp-block-heading" id="h-how-to-create-a-free-business-email-address-using-cpanel">How to Create a Free Business email address using cPanel</h2>



<p>You can also create a business email address using the cPanel from a WordPress website hosting provider. This is the most common and easy method for beginners. The cPanel of the hosting provider will allow you to create a number of email addresses as per your need. You can create professional email addresses for your employees.</p>



<h3 class="wp-block-heading" id="h-get-a-free-email-address-with-a-hosting-provider-like-bluehost">Get a Free email address with a hosting provider like Bluehost.</h3>



<p>Bluehost is the recommended hosting provider in the list of WordPress for WordPress hosting. You have to purchase a hosting plan as per your website&#8217;s traffic.</p>



<p>If you already own a brand, check the availability of a domain name for your brand using the following search bar.</p>



<iframe loading="lazy" class="domain-widget-ashoksihmar" src="//www.bluehost.com/web-hosting/domaincheckapi/?affiliate=ashoksihmar" width="100%" height="175"></iframe>



<p>We recommend creating a domain name the same as your brand. It will help your customers to remember your domain and business. If the domain name is not available with .com, you can go with the ccTLD or country code top-level domain. Learn how to find <a href="https://seoneurons.com/blog/best-domain-name-registrars/">the best domain name for your website or blog</a>.</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-3">
		</div>
	



<p><a href="https://www.bluehost.com/track/ashoksihmar/free-email" target="_blank" rel="noreferrer noopener sponsored nofollow">Bluehost provides</a> you with a free business email address with its hosting. You can also create your website using <a href="https://www.hostg.xyz/aff_c?offer_id=6&amp;aff_id=66782" target="_blank" rel="noreferrer noopener sponsored nofollow">Hostinger</a> which provides free hPanel to create a business email.</p>



<h3 class="wp-block-heading" id="h-create-business-email-using-cpanel">Create Business Email using cPanel</h3>



<p>After purchasing the hosting, you can log in to the cPanel of the hosting provider and create a custom email address with the domain name.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1280" height="663" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/cpanel-email-creation.png" alt="cPanel Email Account" class="wp-image-5860" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/cpanel-email-creation.png 1280w, https://seoneurons.com/blog/wp-content/uploads/2021/06/cpanel-email-creation-768x398.png 768w" sizes="auto, (max-width: 1280px) 100vw, 1280px" /></figure>
</div>


<p>After creating the business email address, you can access it using webmail.seoneurons.com, where seoneurons is your domain name.  This service is with hosting and will not charge you extra. </p>



<h2 class="has-text-align-center wp-block-heading" id="h-enable-email-forwarding-service">Enable Email Forwarding Service.</h2>



<p>Suppose you run a website where you don&#8217;t need any hosting service or have not chosen the right WordPress hosting. As some hosting provider doesn&#8217;t give access to cPanel, you can only access file manager, so you can&#8217;t create a free custom Business email. In such a case, you can buy an email service package or create a free business email using a domain name or use Gmail for business for free.</p>



<p><strong>To create a free Business email on Gmail, you need an email forwarding service from the Domain Name Provider.</strong></p>



<p>NameCheap, Cloudflare, or Google domain provides excellent email forwarding services. Bluehost and Bigrock offer you two free business email addresses with the domain. </p>



<p>But if you purchased a domain that doesn&#8217;t include a free email service or email forward service like Godaddy. You can configure your domain on Cloudflare for email forward service.</p>



<h3 class="wp-block-heading" id="h-create-email-forwarding-using-cloudflare">Create Email Forwarding using Cloudflare.</h3>



<p class="has-cyan-bluish-gray-background-color has-background"><em>This will allow you to receive your business emails on your personal Gmail account. </em></p>



<p>Some domain name providers do not provide an email forwarding feature; in that case, you can use Cloudflare to forward all emails to receive on your business domain.</p>



<p>You have to <a data-wpil="url" href="https://seoneurons.com/blog/setup-cloudflare-cdn-wordpress/">create a Cloudflare account</a> to enable the email forwarding service.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1080" height="426" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/create-free-email-alias.png" alt="crate domain email address" class="wp-image-5862" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/create-free-email-alias.png 1080w, https://seoneurons.com/blog/wp-content/uploads/2021/06/create-free-email-alias-768x303.png 768w" sizes="auto, (max-width: 1080px) 100vw, 1080px" /></figure>
</div>


<ul class="wp-block-list">
<li>Enter the Domain Name for which you want to create a business email address.</li>



<li>Enter the current Gmail address to receive all the forwarded emails.</li>



<li>Click on create free alias.</li>
</ul>



<p>This will send a verification email to your Gmail account. You&#8217;ve to check the email and verify. </p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1020" height="314" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/seo-neurons-email-forwarding.jpg" alt="set up email forwarding" class="wp-image-5864" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/seo-neurons-email-forwarding.jpg 1020w, https://seoneurons.com/blog/wp-content/uploads/2021/06/seo-neurons-email-forwarding-768x236.jpg 768w" sizes="auto, (max-width: 1020px) 100vw, 1020px" /></figure>
</div>


<p>After successful email verification, you can provide the business email address in the Aliases section. When someone sends an email to this address, it will get in your Gmail email box.  That&#8217;s your business email address, so now your users can send emails to this address, and you&#8217;ll receive these emails in your Gmail email box.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1080" height="725" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/seoneurons-mx-dashboard.png" alt="dns management" class="wp-image-5863" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/seoneurons-mx-dashboard.png 1080w, https://seoneurons.com/blog/wp-content/uploads/2021/06/seoneurons-mx-dashboard-768x516.png 768w" sizes="auto, (max-width: 1080px) 100vw, 1080px" /></figure>
</div>


<p>After verifying the domain name, you&#8217;ve to verify and set up the domain for email forwarding. The ImprovMX will ask you to update DNS records. Please note that if you pointed the nameserver to Cloudflare, you&#8217;ve to change the record in Cloudflare. </p>



<ul class="wp-block-list">
<li><a href="https://in.godaddy.com/help/manage-dns-records-680" target="_blank" rel="noreferrer noopener nofollow">How to change DNS record Godaddy.</a></li>
</ul>



		<div class="stream-item stream-item-in-post stream-item-in-post-2">
		</div>
	



<p>After updating the DNS record, you&#8217;ve to wait for its propagation. It may take a few minutes to a few hours. Check this propagation at digwebinterface.com. After the DNS update, you can receive all the emails to your Business email address.</p>



<h3 class="wp-block-heading" id="h-forward-email-in-namecheap-domain-provider">Forward Email in NameCheap Domain Provider.</h3>



<p>Domain Registrar Namecheap allows you to forward emails to your email account. So you can follow this guide if you register your domain with Namecheap hosting provider. </p>



<p>You have to log in to your Namecheap account and click on manage account to forward emails.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1080" height="177" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/namecheap-domain.jpg" alt="Namecheap Domain Manage" class="wp-image-5865" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/namecheap-domain.jpg 1080w, https://seoneurons.com/blog/wp-content/uploads/2021/06/namecheap-domain-768x126.jpg 768w" sizes="auto, (max-width: 1080px) 100vw, 1080px" /></figure>
</div>


<p>Then enable email forwarding, provide youras name, and your Gmaiforward yourwhere you want to receive all emails.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1080" height="266" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/redirect-email.jpg" alt="Email Forwarding to gmail" class="wp-image-5866" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/redirect-email.jpg 1080w, https://seoneurons.com/blog/wp-content/uploads/2021/06/redirect-email-768x189.jpg 768w" sizes="auto, (max-width: 1080px) 100vw, 1080px" /></figure>
</div>


<p>You can try sending emails to your business email and it should receive on your personal Gmail account. </p>



<p>Please note: This Namecheap service will work with default nameservers. You can check the detailed guide of <a href="https://www.namecheap.com/support/knowledgebase/article.aspx/308/2214/how-to-set-up-free-email-forwarding/" target="_blank" rel="noreferrer noopener nofollow">email forwarding at Namecheap.</a></p>



<h2 class="wp-block-heading" id="h-send-email-using-gmail-from-professional-email-address">Send Email using Gmail from Professional Email Address.</h2>



<p class="has-cyan-bluish-gray-background-color has-background">In the above part, we understand how to receive business email addresses and access them in Gmail. We&#8217;ll see how we can reply to those emails from our business email address in this part.</p>



<h3 class="wp-block-heading" id="h-generate-an-app-login-password-for-gmail">Generate an app login password for Gmail</h3>



<p>You&#8217;ve to generate an app login password to add the business email address in Gmail. This password allows you to send or reply to emails using a professional email address.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1280" height="654" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/app-password-create.jpg" alt="Google Account Settings" class="wp-image-5873" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/app-password-create.jpg 1280w, https://seoneurons.com/blog/wp-content/uploads/2021/06/app-password-create-768x392.jpg 768w" sizes="auto, (max-width: 1280px) 100vw, 1280px" /></figure>
</div>


<p>To generate an app password, you&#8217;ve to scroll to Google account settings. Click on your profile picture to open settings for Google account,</p>



<ol class="wp-block-list">
<li>Go to Manage your Google Account,</li>



<li>Open Security tab,</li>



<li>In the Signing into the Google section, click on app passwords.</li>
</ol>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1080" height="444" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/app-password-created.jpg" alt="Generate App Password Google Account" class="wp-image-5875" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/app-password-created.jpg 1080w, https://seoneurons.com/blog/wp-content/uploads/2021/06/app-password-created-768x316.jpg 768w" sizes="auto, (max-width: 1080px) 100vw, 1080px" /></figure>
</div>


<ol class="wp-block-list" start="4">
<li>Select App as Mail,</li>



<li>The system as Windows Computer,</li>



<li>Generate a one-time password to log in using your app.</li>
</ol>



<p>In the above window, you can see a 16 characters password generated. This password can be used in log in to Google Account. <em>How to use guide also provided along with the password</em>. Please don&#8217;t close this tab till the next step is complete.</p>



<h3 class="wp-block-heading" id="h-add-business-email-in-gmail-account">Add Business Email in Gmail Account.</h3>



<p>To send from the business email address using the Gmail account, you&#8217;ve to log in to the Gmail account. From the Gmail dashboard, click on settings&gt;the see all the settings.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1080" height="468" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/gmail-box.jpg" alt="Gmail Account Settings" class="wp-image-5868" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/gmail-box.jpg 1080w, https://seoneurons.com/blog/wp-content/uploads/2021/06/gmail-box-768x333.jpg 768w" sizes="auto, (max-width: 1080px) 100vw, 1080px" /></figure>
</div>


<p>Now go to <strong><em>account and import</em></strong> and then scroll to <strong><em>send mail as</em></strong>(check image below). Click on add another email address.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1080" height="694" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/add-email-address.jpg" alt="Gmail Account and Import Send Mail as Settings" class="wp-image-5871" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/add-email-address.jpg 1080w, https://seoneurons.com/blog/wp-content/uploads/2021/06/add-email-address-768x494.jpg 768w" sizes="auto, (max-width: 1080px) 100vw, 1080px" /></figure>
</div>


<p>As you click on add another email address, this will open the pop windows. You&#8217;ve to provide details as described below.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1080" height="605" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/gmail-business-login.png" alt="set up Business email in Gmail" class="wp-image-5876" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/gmail-business-login.png 1080w, https://seoneurons.com/blog/wp-content/uploads/2021/06/gmail-business-login-768x430.png 768w" sizes="auto, (max-width: 1080px) 100vw, 1080px" /></figure>
</div>


<ol class="wp-block-list">
<li>Name of your business account. This name will visible be to the email receiver.</li>



<li>Provide a business email address,</li>



<li>Follow the next step to set SMTP server,</li>



<li>We are using Gmail SMTP servers, so provide details of Gmail SMPT i.e. smtp.gmail.com.</li>



<li>Enter your Gmails&#8217; email address,</li>



<li>Provide the 16 characters password we created in the last step. </li>



<li>In the Next window, you&#8217;ve to enter the OTP you just received in your Gmail account.</li>



<li>Enter the OTP confirmation code,</li>



<li>Click on verify account. </li>
</ol>



		<div class="stream-item stream-item-in-post stream-item-in-post-4">
		</div>
	



<p>Now, you can send emails using your business email address. But by default, you can reply from your email address. Change this to reply using the same email address where you received the email.</p>



<p>Visit Gmail Account Settings&gt;Account and Import&gt;Send mail as&gt; Reply from the same address.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1080" height="563" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/send-email-from-gmail-same-reply.png" alt="set default reply using email in gmail" class="wp-image-5877" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/send-email-from-gmail-same-reply.png 1080w, https://seoneurons.com/blog/wp-content/uploads/2021/06/send-email-from-gmail-same-reply-768x400.png 768w" sizes="auto, (max-width: 1080px) 100vw, 1080px" /></figure>
</div>


<p>Now you can try sending emails using your business email address. You can receive emails that have attachment of less than 20 MB. If you like to deal with large files, this feature is not for you. In that case, you can buy Gsuit apps.</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-5">
		</div>
	



<h2 class="wp-block-heading">Final Words</h2>



<p>This article explains how we can create a free Business email address in Gmail, and hosting cPanel. And also, it makes us utilize the email forwarding service provided along with the domain name. Google domains and NameCheap are best in this respect.</p>



<p>I hope you like this article. In case of any doubt, query, or feedback, feel free to ask in the comment section provided below.</p>
<p>The post <a href="https://seoneurons.com/blog/create-free-business-email-address/">How to Create a Business Email Address for Free in 2023</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seoneurons.com/blog/create-free-business-email-address/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>How to Make Money from Blogging &#8211; Complete Guide</title>
		<link>https://seoneurons.com/blog/make-money-blogging/</link>
					<comments>https://seoneurons.com/blog/make-money-blogging/#respond</comments>
		
		<dc:creator><![CDATA[Ashok Sihmar]]></dc:creator>
		<pubDate>Wed, 02 Jun 2021 17:35:45 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Earnings]]></category>
		<guid isPermaLink="false">https://seoneurons.com/blog/?p=5063</guid>

					<description><![CDATA[<p>Everyone on the internet is for information, entertainment, boost their businesses. And if you&#8217;ve some information/knowledge/skill, then you can create content, and public it. Like our company provides you valuable information and boosts your business Create content as per your expertise. You can make YouTube videos, blogging, podcasting, etc. But there would be a question &#8230;</p>
<p>The post <a href="https://seoneurons.com/blog/make-money-blogging/">How to Make Money from Blogging &#8211; Complete Guide</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Everyone on the internet is for information, entertainment, boost their businesses. And if you&#8217;ve some information/knowledge/skill, then you can create content, and public it. Like our company provides you valuable information and boosts your business Create content as per your expertise. You can make YouTube videos, blogging, podcasting, etc. But there would be a question in your mind, how would it be beneficial for me? This article will discuss how to make money from blogging.</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1280" height="720" src="https://seoneurons.com/blog/wp-content/uploads/2021/06/earn-money-blogging.png" alt="Make Money Blogging" class="wp-image-5778" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/06/earn-money-blogging.png 1280w, https://seoneurons.com/blog/wp-content/uploads/2021/06/earn-money-blogging-768x432.png 768w, https://seoneurons.com/blog/wp-content/uploads/2021/06/earn-money-blogging-390x220.png 390w" sizes="auto, (max-width: 1280px) 100vw, 1280px" /></figure>
</div>


<blockquote class="wp-block-quote quote-light is-layout-flow wp-block-quote quote-light-is-layout-flow">
<p>Nobody in this world knows everything, But everybody knows something.</p>
</blockquote>



		<div class="stream-item stream-item-in-post stream-item-in-post-1">
		</div>
	



<p>As we already discussed, you can share information on the internet through any medium like audio, video, or text form. However, in this article, we&#8217;re talking about blogging (information shared in text form).</p>



<h2 class="wp-block-heading" id="h-how-to-create-a-blog-to-generate-revenue">How to Create a Blog to generate revenue?</h2>



<p>Blogging is the sharing of valuable information on the internet in text form. For blogging, you can use WordPress, Blogger, Joomla, WIX, Tumblr, Ghost, etc. WordPress and Blogger are the most commonly used content management systems.</p>



<p> To make a try, most bloggers use the Blogger platform as it is free, but if you want to make a career in blogging, I&#8217;ll recommend WordPress CMS. Check the <a href="https://seoneurons.com/blog/blogger-vs-wordpress/">comparison between Blogger and WordPress</a>. </p>



		<div class="stream-item stream-item-in-post stream-item-in-post-2">
		</div>
	



<p>You can <a href="https://seoneurons.com/blog/wordpress/create-wordpress-website/">start a WordPress</a> or Blogger blog. WordPress gives you more control over your blog to add additional functions.</p>



<p>You can create a blog on WordPress if you&#8217;re serious about blogging. WordPress is a self-hosted platform that provides you with much functionality without technical knowledge.</p>



<p>Some users who start blogging start their blog with Blogger. But this is not a professional tool for blogging. You can understand this by <a href="https://seoneurons.com/blog/blogger-vs-wordpress/">comparing Blogger and WordPress websites</a>.</p>



<p>But the domain name is also important for blogging. So, read how to <a href="https://seoneurons.com/blog/how-to-choose-a-best-domain-name/">choose a domain name</a>. Then, after the domain name, you must buy hosting for the WordPress website. You can also get WordPress-recommended Bluehost hosting or Hostinger for beginners.</p>



<h2 class="wp-block-heading" id="h-how-to-make-money-from-blogging">How to Make Money from Blogging?</h2>



<p>If you look at blogging as a career, you need to generate revenue. For this, first, you&#8217;ve to create a blog. So, let&#8217;s discuss how to generate money through blogging.</p>



<h3 class="wp-block-heading" id="h-ad-network-likes-adsense">Ad Network likes Adsense.</h3>



<p>You can optimize the website or blog with the help of Adsense. Adsense is a product of Google and works as an intermediate between advertiser and publisher. </p>



		<div class="stream-item stream-item-in-post stream-item-in-post-3">
		</div>
	



<p>You can get your <a href="https://seoneurons.com/blog/adsense/get-google-adsense-approval-for-website-blog/">website approved for Adsense</a> if you have written enough content. If you&#8217;re looking at blogging as a career, make sure your blog is on WordPress. </p>



<p>You can place Adsense ads code, just above the content, in the content and sidebar. The ads should not be more than the content. </p>



<p>The AdSense ads are user-interest-based. So that the user can interact with these ads on the blog and generate revenue, that&#8217;s how you can make money with blogging using ad networks like Adsense.</p>



<h3 class="wp-block-heading" id="h-earn-with-ezoic">Earn with Ezoic.</h3>



<p>Ezoic uses Google Ad Manager to display ads on your website. You can apply for the Ezoic if your website has 10k sessions every month. </p>



<p>Ezoic has partnerships with Adsense and other 3rd party publishers. When you provide an ad slot to Ezoic, ads appear on the bid bases.  And can boost your earnings by 150 to 300%. </p>



<p>If you have a minimum of 10k monthly sessions, you can <a href="https://ezoic.com/?tap_a=6182-5778c2&amp;tap_s=1870499-8abd46" target="_blank" rel="noreferrer noopener sponsored nofollow">sign up for an Ezoic account</a> and boost your Adsense earnings.</p>



<h3 class="wp-block-heading" id="h-affiliate-marketing">Affiliate Marketing</h3>



<p>Affiliate Marketing is one of the best money-making platforms. You can affiliate various products according to the niche of the website. </p>



<p>Suppose you&#8217;re running a blog related to mobile phones, then you can add the affiliate link of mobiles. A single sale using these links will generate good revenue. Likewise, for an educational website, you can affiliate book links. And in the same way, for fashion websites, you can promote related product links. </p>



<p>You can create amazon affiliate product links and share this on the blog and YouTube channel(if you&#8217;ve).</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-4">
		</div>
	



<h3 class="wp-block-heading" id="h-promote-a-product-write-a-product-review">Promote a product, Write a Product Review.</h3>



<p>You can promote products of any brand. For example, suppose you&#8217;re writing content about skincare. Then you may promote the skincare products as ads if the brand offers so. (usually, they do it on a monthly contract basis). </p>



<p>You can also review products on the blog. For example, you can write a product review on a skincare website on their demand. But please try to write genuine content, write honest reviews to build trust with your users.</p>



<p>Suppose a person likes to buy PlayStation and search for product reviews. You can review the latest release like PS5, the new features, the pros and cons, etc. Its stunning features and the latest games you can play on. You can provide the promotional link to the PS5 in the blog. The user may buy through the link provided and generate revenue for you.</p>



<h3 class="wp-block-heading" id="h-online-course">Online Course</h3>



<p>You can sell online courses on your website. For example, suppose you&#8217;re blogging for an educational website. You&#8217;ve enough free content to read available on the blog. That attracts users to read more content from you. In that case, you created your value.</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-5">
		</div>
	



<p>Now, you can offer a premium course to your users. Make sure the paid content contains real value so the users can promote your content to others or buy again if another course is available on your website.</p>



<p>After gaining skills, you can get a job or if you run a business then it will <a href="https://seoneurons.com/blog/local-seo/small-business-seo-tips/">boost visibility of your business</a> on the internet.</p>



<p>I hope this article will help you understand online earning through blogging. In case of any doubt or query, feel free to ask in the comment section provided below.</p>
<p>The post <a href="https://seoneurons.com/blog/make-money-blogging/">How to Make Money from Blogging &#8211; Complete Guide</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seoneurons.com/blog/make-money-blogging/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What is Internal Linking for SEO? All you need to know</title>
		<link>https://seoneurons.com/blog/internal-linking/</link>
					<comments>https://seoneurons.com/blog/internal-linking/#comments</comments>
		
		<dc:creator><![CDATA[Ashok Sihmar]]></dc:creator>
		<pubDate>Sat, 01 May 2021 12:47:16 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Blogger-SEO]]></category>
		<category><![CDATA[html-seo]]></category>
		<category><![CDATA[WordPress SEO]]></category>
		<guid isPermaLink="false">https://seoneurons.com/blog/?p=4584</guid>

					<description><![CDATA[<p>The human brain is the best example of internal linking, the smallest unit of the brain is neurons, and every neuron is connected through synapses, forming a proper structure. Whenever we forgot something, our brain knows that we&#8217;ll recall that the reason for forgetting is weak synapses bond(internal linking). Similarly, when we don&#8217;t internally link pages &#8230;</p>
<p>The post <a href="https://seoneurons.com/blog/internal-linking/">What is Internal Linking for SEO? All you need to know</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><span data-preserver-spaces="true">The human brain is </span><strong><span data-preserver-spaces="true">the best example of internal linking</span></strong><span data-preserver-spaces="true">, the smallest unit of the brain is neurons, and every neuron is connected through synapses, forming a proper structure. Whenever we forgot something, our brain knows that we&#8217;ll recall that the reason for forgetting is weak synapses bond(internal linking). Similarly, when we don&#8217;t internally link pages well, Google forgot or may find when you force it to do so. The human brain is the best example of website structure and mind for SEO—that&#8217;s why our website name is </span><a class="editor-rtfLink" href="https://seoneurons.com/blog/">SEO Neurons</a><span data-preserver-spaces="true">.</span></p>



		<div class="stream-item stream-item-in-post stream-item-in-post-1">
		</div>
	



<h2 class="wp-block-heading" id="h-what-is-internal-linking">What is Internal Linking?</h2>



<p>Internal linking is the linking of posts or articles within the same domain. Means one page of your website connects with another page of the same site. That means the internal linking enhances the user experience as the user can find the complete information related to the article. </p>



<p>Internal Linking also passes <a href="https://seoneurons.com/blog/pagerank/">PageRank </a>from one page to another, that will improve domain authority and boost SEO of the website. <img loading="lazy" decoding="async" width="1280" height="720" class="wp-image-5020" src="https://seoneurons.com/blog/wp-content/uploads/2021/05/internal-linking-seo.jpg" alt="Internal Linking and SEO" srcset="https://seoneurons.com/blog/wp-content/uploads/2021/05/internal-linking-seo.jpg 1280w, https://seoneurons.com/blog/wp-content/uploads/2021/05/internal-linking-seo-300x169.jpg 300w, https://seoneurons.com/blog/wp-content/uploads/2021/05/internal-linking-seo-1024x576.jpg 1024w, https://seoneurons.com/blog/wp-content/uploads/2021/05/internal-linking-seo-768x432.jpg 768w, https://seoneurons.com/blog/wp-content/uploads/2021/05/internal-linking-seo-390x220.jpg 390w" sizes="auto, (max-width: 1280px) 100vw, 1280px" /></p>



<p>It also helps a search engine like Google to understand the structure of your website. All the anchor links provide additional information to the search engine to rank the article in its search results. That&#8217;s why internal links help a website determine the context and rank it accordingly.</p>



<h2 class="wp-block-heading" id="h-internal-linking-and-seo">Internal Linking and SEO.</h2>



<p>Suppose you wrote many quality articles and a few of the top ranks in the Google search results. That indicates the content that ranks in the search results has an authority called page authority. This page authority can be passed to the other pages using internal linking.</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-2">
		</div>
	



<p>When the crawler crawls your website, it also crawls the internal links provided in the article. The anchor text provided in the content will help to understand all about the linked content.</p>



<h2 class="wp-block-heading" id="h-hierarchy-for-internal-linking">Hierarchy for Internal Linking.</h2>



<p>When you start a website, there should be a map in your mind with proper structure. This structure may be of different level according to the need of content like 2 level structure, 3 level or 4, most of the website has 3 level structure. For your website, it may be as per your need.</p>



<h2 class="wp-block-heading" id="h-how-to-perform-internal-linking-in-wordpress">How to perform Internal Linking in WordPress?</h2>



<p>WordPress CMS enables you to perform internal linking easily. You have to</p>



<ul class="wp-block-list"><li>select the text as anchor text</li><li>Click on the chain/link button</li><li>search the Topic and link</li></ul>



<p>Please don&#8217;t click on the open in new tab or nofollow to pass the link juice. When you click on the open in a new tab, it will automatically add some <code>rel-tag</code> that prohibits passing link juice. The link should be open in the same window for interlinking in <strong>WordPress.</strong></p>



<h2 class="wp-block-heading" id="h-internal-linking-in-html-for-blogger-and-other-cms">Internal Linking in HTML for Blogger and other CMS.</h2>



<p>When you&#8217;re on platforms like Blogger or other HTML theme pages, you can follow the practice with the help of HTML. With the help of HTML, one can connect an article to the other in the following way.</p>



<p><code>&lt;a href="<span class="has-inline-color has-vivid-red-color">/internal-link/</span>&gt;<span class="has-inline-color has-vivid-green-cyan-color">anchor text for the internal link</span>&lt;/a&gt;</code></p>



<p>Some users use internal links like <em><strong>click here</strong></em>, don&#8217;t follow the practice discussed above. It is not providing additional information to the crawler about your interlinked article. The text that links one content to another is called anchor text. And anchor text plays a vital role in website SEO.</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-3">
		</div>
	



<p>If you want to nofollow a content page of your website, you can use the nofollow tag as</p>



<p><code>&lt;a href="/internal-link/ rel="nofollow"&gt;internal link that should not index&lt;/a&gt;</code>.</p>



<p>This content may be like a log-in page, pages you don&#8217;t want to index. Along with nofollow, you can use the noindex robots tag with such pages(pages that shouldn&#8217;t index).</p>



<h2 class="wp-block-heading" id="h-internal-links-generated-by-js-flash-etc">Internal links generated by JS, flash, etc.</h2>



<p>Do not use internal links generated by javascript etc. A search engine can&#8217;t control links generated by javascript or flash etc.</p>



<p>Try to add HTML links to the webpage. Both practices provided above, like WordPress interlinking and HTML interlinking, follow the HTML method.</p>



<h2 class="wp-block-heading" id="h-internal-broken-links">Internal broken links</h2>



<p>Broken links are harmful to the user experience as well as SEO. When a user clicks on a link and responds to an error 404 page, it indicates that the website or blog doesn&#8217;t care about posts or pages.</p>



<p>Broken links may be a result of deleted pages, pages whose permalink/slug has been changed. When you do so, redirect that page or remove the link that points to the deleted content.</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-5">
		</div>
	



<p>Check broken internal links of the website from time to time. For this, you can use the<a href="https://ahrefs.com/webmaster-tools" target="_blank" rel="noreferrer noopener nofollow"> ahrefs webmaster tool</a>. That will detect and tells you all the internal links of your website.</p>



<p>This tool will audit almost all the matric of the website that helps in understanding the website structure, broken links, expired links, etc.</p>



<p>As we already discussed, internal links connect pages within the website. When we provide a link to another website in our article or some other websites, provide our link on their website, will-called as an external link. Internal links help a website with its structure, and if a webpage gets external links on some of the articles. It will boost the authority of that page.</p>



<p>External links help a search engine to understand the content, niche, and type of the content. These links help a search engine to understand all the factors about the article.</p>



		<div class="stream-item stream-item-in-post stream-item-in-post-4">
		</div>
	



<h2 class="wp-block-heading" id="h-conclusion">Conclusion</h2>



<p>With the help of this article, we can easily understand the importance of internal linking of the content that helps a website in the following ways.</p>



<ul class="wp-block-list"><li>Anchor links help Google to understand the context of the linked page/s,</li><li>Pass page authority to other pages,</li><li>Reduce bounce rate of the website,</li><li>Boost SEO of the website</li></ul>



<p>So we must follow the practice of internal linking of a website.</p>



<p>I hope this article will help you in understanding internal linking. In case of any doubt, query or suggestion, please ask in the comment section provided below.</p>
<p>The post <a href="https://seoneurons.com/blog/internal-linking/">What is Internal Linking for SEO? All you need to know</a> appeared first on <a href="https://seoneurons.com/blog">SEO Neurons</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://seoneurons.com/blog/internal-linking/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
