<?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>| Blogger Tips And Tricks|Latest Tips For Bloggers</title>
	<atom:link href="https://www.bloggertipandtrick.net/tutorials/google/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Blogger Tips And Tricks&#124;Latest Tips For Bloggers</description>
	<lastBuildDate>Mon, 28 Jul 2025 14:24:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to Load Google Fonts Asynchronously Without Render-Blocking CSS</title>
		<link>https://www.bloggertipandtrick.net/async-google-fonts-no-render-blocking/</link>
					<comments>https://www.bloggertipandtrick.net/async-google-fonts-no-render-blocking/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 22 Jul 2025 14:44:37 +0000</pubDate>
				<category><![CDATA[fonts]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">https://www.bloggertipandtrick.net/?p=6672</guid>

					<description><![CDATA[<p>Loading Google Fonts asynchronously is one of the best ways to speed up your website and eliminate the render-blocking CSS issue. In the past, developers often used the Web Font Loader JavaScript library for this purpose. However, modern browsers now support a faster and more efficient method that doesn't require extra JavaScript. The latest approach [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/async-google-fonts-no-render-blocking/">How to Load Google Fonts Asynchronously Without Render-Blocking CSS</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Load-Google-Fonts-Asynchronously-Without-Render-Blocking-CSS.jpg" alt="How to Load Google Fonts Asynchronously Without Render-Blocking CSS" width="1200" height="630" class="singular-featured-image alignnone size-full wp-image-7296" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Load-Google-Fonts-Asynchronously-Without-Render-Blocking-CSS.jpg 1200w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Load-Google-Fonts-Asynchronously-Without-Render-Blocking-CSS-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></p>
<p>Loading Google Fonts asynchronously is one of the best ways to speed up your website and eliminate the render-blocking CSS issue. In the past, developers often used the <strong>Web Font Loader</strong> JavaScript library for this purpose. However, modern browsers now support a faster and more efficient method that doesn't require extra JavaScript.</p>
<p>The latest approach uses the <strong>preconnect</strong> and <strong>preload</strong> tags combined with a smart <strong>onload</strong> handler and a <strong>noscript</strong> fallback. This ensures the font stylesheet is fetched early without delaying your page's render, improving both user experience and performance scores in tools like Google PageSpeed Insights and Lighthouse.</p>
<p>Add the following code just before the <strong>&lt;/head&gt;</strong> tag of your website:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
&lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
&lt;link rel=&quot;preload&quot; as=&quot;style&quot; href=&quot;<span style="color:#0cb30c;font-weight:bold;">YOUR_GOOGLE_FONTS_URL</span>&quot; onload=&quot;this.onload=null;this.rel='stylesheet'&quot;&gt;
&lt;noscript&gt;
  &lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color:#0cb30c;font-weight:bold;">YOUR_GOOGLE_FONTS_URL</span>&quot;&gt;
&lt;/noscript&gt;</pre>
<p>Replace "<span style="color: #0cb30c; font-weight: bold;">YOUR_GOOGLE_FONTS_URL</span>" with your actual Google Fonts URL. For example:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.googleapis.com&quot;&gt;
&lt;link rel=&quot;preconnect&quot; href=&quot;https://fonts.gstatic.com&quot; crossorigin&gt;
&lt;link rel=&quot;preload&quot; as=&quot;style&quot; href=&quot;<span style="color:#ff00ff;font-weight:bold;">https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap</span>&quot; onload=&quot;this.onload=null;this.rel='stylesheet'&quot;&gt;
&lt;noscript&gt;
  &lt;link rel=&quot;stylesheet&quot; href=&quot;<span style="color:#ff00ff;font-weight:bold;">https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap</span>&quot;&gt;
&lt;/noscript&gt;</pre>
<p><strong>Here's how the code works:</strong></p>
<ul>
<li><strong>rel="preconnect"</strong> sets up early connections to Google's font servers for faster loading.</li>
<li><strong>rel="preload"</strong> fetches the stylesheet without applying it immediately, avoiding render-blocking.</li>
<li>The <strong>onload</strong> event updates the rel to <strong>stylesheet</strong> after loading.</li>
<li><strong>&lt;noscript&gt;</strong> ensures font loading still works for users with JavaScript disabled.</li>
</ul>
<p>This method loads Google Fonts efficiently, avoids layout shifts, and prevents invisible text issues by using <strong>display=swap</strong>.</p>
<p><strong>How to generate your Google Fonts URL:</strong></p>
<p>Go to <a href="https://fonts.google.com" target="_blank" rel="nofollow noopener">fonts.google.com</a>, select your desired font families and weights, and copy the generated embed link.</p>
<p><strong>Tip:</strong> Use fewer font families and font weights to reduce page size and loading time.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/async-google-fonts-no-render-blocking/">How to Load Google Fonts Asynchronously Without Render-Blocking CSS</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/async-google-fonts-no-render-blocking/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Change or Disable Blogger Cookies Notification</title>
		<link>https://www.bloggertipandtrick.net/change-blogger-cookies-notification/</link>
					<comments>https://www.bloggertipandtrick.net/change-blogger-cookies-notification/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sat, 19 Jul 2025 15:52:04 +0000</pubDate>
				<category><![CDATA[browser]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[java script]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=6344</guid>

					<description><![CDATA[<p>Blogger automatically displays a cookies consent banner for European Union (EU) visitors to comply with GDPR regulations. This banner appears at the top of your blog and informs users that your site uses cookies, especially for Google services and personalized ads. If you're located outside the EU and want to preview the cookies notification, you [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/change-blogger-cookies-notification/">How to Change or Disable Blogger Cookies Notification</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Change-or-Disable-Blogger-Cookies-Notification.jpg" alt="How to Change or Disable Blogger Cookies Notification" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7280" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Change-or-Disable-Blogger-Cookies-Notification.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Change-or-Disable-Blogger-Cookies-Notification-768x403.jpg 768w" sizes="(max-width: 1536px) 100vw, 1536px" /></p>
<p>Blogger automatically displays a cookies consent banner for <strong>European Union (EU)</strong> visitors to comply with GDPR regulations. This banner appears at the top of your blog and informs users that your site uses cookies, especially for Google services and personalized ads.</p>
<p><a href="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Blogger-Cookies-Notification.png" target="_blank"><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Blogger-Cookies-Notification.png" alt="Blogger Cookies Notification" width="1053" height="92" class="alignnone size-full wp-image-7283" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Blogger-Cookies-Notification.png 1053w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Blogger-Cookies-Notification-768x67.png 768w" sizes="(max-width: 1053px) 100vw, 1053px" /></a></p>
<p>If you're located outside the EU and want to preview the cookies notification, you can no longer use region-specific domains like <strong>.co.uk</strong> as they now redirect to <strong>.com</strong>.</p>
<p>Instead, use a VPN, browser extension, or an online tool like "GeoPeeker" to simulate a visit from an EU country. This allows you to see how the cookie banner appears to EU-based visitors, regardless of whether your blog uses a *.blogspot.com address or a custom domain.</p>
<p>The cookie banner in Blogger is automatically managed by Google and is designed to inform visitors about the use of cookies on your site. It highlights how Google uses cookies for services such as personalized advertising and traffic analysis, while also fulfilling the legal requirement to obtain user consent under GDPR regulations.</p>
<p>However, the default message may not align with your blog's tone or design, and some users choose to customize or disable it entirely. This should be done with caution, as it may lead to compliance risks.</p>
<h2>How to Change the Blogger Cookies Notification Message</h2>
<p>You can customize the cookie banner text and buttons. Go to the theme's "<strong>Edit HTML</strong>" page and add this code just before the <strong>&lt;/head&gt;</strong> tag:</p>
<pre style="border:1px solid black;overflow:auto;">&lt;script type=&quot;text/javascript&quot;&gt;
    cookieOptions = {
        msg: &quot;<span style='color:#ff0000'>This site uses cookies from Google to deliver its services, to personalize ads and to analyze traffic. Information about your use of this site is shared with Google. By using this site, you agree to its use of cookies.</span>&quot;,
        link: &quot;https://policies.google.com/technologies/cookies&quot;,
        close: &quot;Got it&quot;,
        learn: &quot;Learn More&quot;
    };
&lt;/script&gt;</pre>
<p><strong>Note:</strong> You need to change the <span style="color:#0cb30c;"><strong>msg</strong></span> text to better fit your blog's language or tone.</p>
<h2>How to Disable the Blogger Cookies Notification</h2>
<p><strong>Important:</strong> Use this <strong>only if</strong> you fully understand your region's legal responsibilities. Disabling the banner may lead to <strong>non-compliance</strong> with privacy laws like GDPR.</p>
<p>To completely disable the banner, add the following code just before the closing <strong>&lt;/head&gt;</strong> tag in your theme's Edit HTML page:</p>
<pre style="border:1px solid black;overflow:auto;">&lt;script type=&quot;text/javascript&quot;&gt;
    cookieOptions = {};
&lt;/script&gt;</pre>
<p><strong>Note:</strong> For most users, customizing the banner (rather than removing it) is the safest and most compliant choice.</p>
<p>For more information: <a href="https://support.google.com/blogger/answer/6253244" target="_blank" rel="nofollow">https://support.google.com/blogger/answer/6253244</a></p>
<p>The post <a href="https://www.bloggertipandtrick.net/change-blogger-cookies-notification/">How to Change or Disable Blogger Cookies Notification</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/change-blogger-cookies-notification/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Submit Blogger Sitemap to Google Search Console</title>
		<link>https://www.bloggertipandtrick.net/submit-blogger-sitemap-google-search-console/</link>
					<comments>https://www.bloggertipandtrick.net/submit-blogger-sitemap-google-search-console/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 15 Jul 2025 03:36:00 +0000</pubDate>
				<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/03/how-to-submit-blogger-sitemap-to-google.html</guid>

					<description><![CDATA[<p>This quick tutorial explains how to submit your Blogger blog’s sitemap to Google Search Console. Every Blogger blog has a sitemap file automatically created by Blogger. You can access it by adding /sitemap.xml to the end of your blog URL. For example: https://YOURBLOGNAME.blogspot.com/sitemap.xml Follow the steps below to submit your Blogger sitemap to Google Search [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/submit-blogger-sitemap-google-search-console/">Submit Blogger Sitemap to Google Search Console</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Submit-Blogger-Sitemap-to-Google-Search-Console.jpg" alt="Submit Blogger Sitemap to Google Search Console" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7267" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Submit-Blogger-Sitemap-to-Google-Search-Console.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Submit-Blogger-Sitemap-to-Google-Search-Console-768x403.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></p>
<p>This quick tutorial explains how to submit your Blogger blog’s sitemap to <strong>Google Search Console</strong>. Every Blogger blog has a sitemap file automatically created by Blogger. You can access it by adding <strong>/sitemap.xml</strong> to the end of your blog URL.</p>
<p>For example: <strong><u>https://YOURBLOGNAME.blogspot.com<span style="color:#0cb30c;">/sitemap.xml</span></u></strong></p>
<p>Follow the steps below to submit your Blogger sitemap to Google Search Console:</p>
<p>1. Go to <a href="https://search.google.com/search-console" target="_blank">Google Search Console</a> and sign in with your Google account.</p>
<p>2. Select your blog from the property list (top-left dropdown).</p>
<p><strong>Note:</strong> If your blog isn't added yet, click "<strong>Add Property</strong>"  and enter your full blog URL (e.g., https://yourblogname.blogspot.com), then follow the <strong>verification steps</strong>.</p>
<p>3. In the left sidebar, click on "<strong>Indexing</strong>" → "<strong>Sitemaps</strong>".</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Sitemaps-Google-Search-Console.png" alt="Sitemaps Google Search Console" width="307" height="487" class="alignnone size-full wp-image-7270" /></p>
<p>4. Under "<strong>Add a new sitemap</strong>", enter your full sitemap URL like this:</p>
<pre>https://YOURBLOGNAME.blogspot.com/sitemap.xml</pre>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Add-Sitemap-URL-to-Google-Search-Console.png" alt="Add Sitemap URL to Google Search Console" width="724" height="280" class="alignnone size-full wp-image-7268" /></p>
<p>5. Then click the <strong>Submit</strong> button.</p>
<p>Your Blogger sitemap has now been submitted to Google. After processing, you'll be able to view indexing status, discovered URLs, and any crawling errors in the Search Console dashboard.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Submitted-Blogger-Sitemaps.png" alt="Submitted Blogger Sitemaps" width="718" height="257" class="alignnone size-full wp-image-7269" /></p>
<p><strong>Note:</strong> If you're using a <strong>custom domain</strong> (like https://www.mycustomdomain.com), your sitemap URL would be:</p>
<pre>https://www.mycustomdomain.com/sitemap.xml</pre>
<p>The post <a href="https://www.bloggertipandtrick.net/submit-blogger-sitemap-google-search-console/">Submit Blogger Sitemap to Google Search Console</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/submit-blogger-sitemap-google-search-console/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>How to Disable Google Webpage Translation</title>
		<link>https://www.bloggertipandtrick.net/disable-google-webpage-translation/</link>
					<comments>https://www.bloggertipandtrick.net/disable-google-webpage-translation/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sun, 03 Dec 2017 06:06:08 +0000</pubDate>
				<category><![CDATA[google]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[meta tags]]></category>
		<guid isPermaLink="false">https://www.bloggertipandtrick.net/?p=6693</guid>

					<description><![CDATA[<p>When Google recognizes that the contents of a web page are not in the language that the user is likely to want to read, to provide better content for users Google often provide a link to a translation in the search results. This feature gives you the chance to display your content in an understandable [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/disable-google-webpage-translation/">How to Disable Google Webpage Translation</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When Google recognizes that the contents of a web page are not in the language that the user is likely to want to read, to provide better content for users Google often provide a link to a translation in the search results. This feature gives you the chance to display your content in an understandable way to a much larger group of users. However, if you don't want this feature you can disable it adding this meta tag after the <strong>&lt;head&gt;</strong> tag of your website:</p>
<pre style="border:1px solid black;overflow:auto;width:95%;font-size:120%;">&lt;meta name='google' content='notranslate'/&gt;</pre>
<p>This meta tag tells the Google that you don't want to provide a translation for your website.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/disable-google-webpage-translation/">How to Disable Google Webpage Translation</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/disable-google-webpage-translation/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Google Malware Checker : Detect Unsafe Websites</title>
		<link>https://www.bloggertipandtrick.net/google-malware-checker-detect-unsafe-websites/</link>
					<comments>https://www.bloggertipandtrick.net/google-malware-checker-detect-unsafe-websites/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 03 Dec 2015 14:10:55 +0000</pubDate>
				<category><![CDATA[domain]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[tools]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5557</guid>

					<description><![CDATA[<p>Google's safe browsing technology provides a great tool called "Malware Checker" to check whether a website is currently dangerous to visit. Google checks billions of URLs per day looking for unsafe websites. Every day, they discover thousands of new unsafe sites, many of which are legitimate websites that have been compromised. When Google detect a [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/google-malware-checker-detect-unsafe-websites/">Google Malware Checker : Detect Unsafe Websites</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Google's safe browsing technology provides a great tool called "<strong>Malware Checker</strong>" to check whether a website is currently dangerous to visit. Google checks billions of URLs per day looking for unsafe websites. Every day, they discover thousands of new unsafe sites, many of which are legitimate websites that have been compromised. When Google detect a unsafe website, they show a warning on Google Search and in web browsers. You can use Google's Malware Checker visiting here:</p>
<p><a href="https://www.google.com/transparencyreport/safebrowsing/diagnostic/" target="_blank" rel="nofollow">https://www.google.com/transparencyreport/safebrowsing/diagnostic/</a></p>
<p>The post <a href="https://www.bloggertipandtrick.net/google-malware-checker-detect-unsafe-websites/">Google Malware Checker : Detect Unsafe Websites</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/google-malware-checker-detect-unsafe-websites/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Change Google Account Password</title>
		<link>https://www.bloggertipandtrick.net/change-google-account-password/</link>
					<comments>https://www.bloggertipandtrick.net/change-google-account-password/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 06 Oct 2015 08:21:39 +0000</pubDate>
				<category><![CDATA[google]]></category>
		<category><![CDATA[security]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5511</guid>

					<description><![CDATA[<p>It is good to have a regular change interval for the password of your Google account. To change it, first visit to Google's "Sign-in &#038; security" page: https://myaccount.google.com/security Under "Password &#038; sign-in method" section, Click on "Password". Now you will be asked to confirm your password. After that you can see a form to enter [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/change-google-account-password/">How To Change Google Account Password</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>It is good to have a regular change interval for the password of your Google account. To change it, first visit to Google's "<strong>Sign-in & security</strong>" page:</p>
<p><a href="https://myaccount.google.com/security" target="_blank" rel="nofollow">https://myaccount.google.com/security</a></p>
<p>Under "<strong>Password & sign-in method</strong>" section, Click on "<strong>Password</strong>".</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/10/Password-and-sign-in-method.png" alt="Password and sign-in method" width="640" height="389" class="alignnone size-full wp-image-5513" /></p>
<p>Now you will be asked to confirm your password. After that you can see a form to enter your new password.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/10/Enter-and-Confirm-Your-Password.png" alt="Enter and Confirm Your Password" width="700" height="497" class="alignnone size-full wp-image-5512" /></p>
<p><strong>Note:</strong> Make sure you choose a strong password.</p>
<blockquote><p>A strong password contains a mix of numbers, letters, and symbols. It is hard to guess, does not resemble a real word, and is only used for this account.</p></blockquote>
<p>After entering and confirming your new password, click on "<strong>CHANGE PASSWORD</strong>" button.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/change-google-account-password/">How To Change Google Account Password</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/change-google-account-password/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Change Default Title Tag on Blogger for SEO</title>
		<link>https://www.bloggertipandtrick.net/how-to-change-default-title-tag-on/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-change-default-title-tag-on/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 26 Aug 2015 14:52:00 +0000</pubDate>
				<category><![CDATA[change template]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[widget]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/04/how-to-change-default-title-tag-on-blogger-for-seo.html</guid>

					<description><![CDATA[<p>This is a quick SEO tutorial. But it will improve the title tag of your blogger blog for better search engine rankings. Find this line in "Edit HTML": &#60;title&#62;&#60;data:blog.pageTitle/&#62;&#60;/title&#62; Now replace above line with the code given below: &#60;!-- Start www.bloggertipandtrick.net: Changing the Blogger Title Tag --&#62; &#60;b:if cond='data:blog.pageType == &#38;quot;index&#38;quot;'&#62; &#60;title&#62;&#60;data:blog.pageTitle/&#62;&#60;/title&#62; &#60;b:else/&#62; &#60;b:if cond='data:blog.pageType [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-change-default-title-tag-on/">How To Change Default Title Tag on Blogger for SEO</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This is a quick SEO tutorial. But it will improve the title tag of your blogger blog for better search engine rankings.</p>
<p>Find this line in "Edit HTML":</p>
<pre style="width: 90%; overflow: auto; border: 1px solid black; font-size:120%;">&lt;title&gt;&lt;data:blog.pageTitle/&gt;&lt;/title&gt;</pre>
<p><span style="color: #000000;">Now </span><span style="color: #ff0000;">replace</span><span style="color: #000000;"> above line with the code given below:</span></p>
<pre style="width: 90%; overflow: auto; border: 1px solid black;">&lt;!-- Start www.bloggertipandtrick.net: Changing the Blogger Title Tag  --&gt;
&lt;b:if cond='data:blog.pageType == &amp;quot;index&amp;quot;'&gt;
&lt;title&gt;&lt;data:blog.pageTitle/&gt;&lt;/title&gt; 
&lt;b:else/&gt;
&lt;b:if cond='data:blog.pageType != &amp;quot;error_page&amp;quot;'&gt;
&lt;title&gt;&lt;data:blog.pageName/&gt; ~ &lt;data:blog.title/&gt;&lt;/title&gt;
&lt;b:else/&gt;
&lt;title&gt;404 ~ Page Not Found!&lt;/title&gt;
&lt;/b:if&gt;
&lt;/b:if&gt;
&lt;!-- End www.bloggertipandtrick.net: Changing the Blogger Title Tag  --&gt;</pre>
<p>Click on "Save Template" and you are done.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-change-default-title-tag-on/">How To Change Default Title Tag on Blogger for SEO</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/how-to-change-default-title-tag-on/feed/</wfw:commentRss>
			<slash:comments>12</slash:comments>
		
		
			</item>
		<item>
		<title>How to Submit Blogger Sitemap to Google Webmaster Tools</title>
		<link>https://www.bloggertipandtrick.net/submit-blogger-sitemap-webmaster-tools/</link>
					<comments>https://www.bloggertipandtrick.net/submit-blogger-sitemap-webmaster-tools/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sun, 22 Mar 2015 11:12:54 +0000</pubDate>
				<category><![CDATA[google]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[webmaster tools]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5356</guid>

					<description><![CDATA[<p>Submitting a sitemap to a Webmaster Tools is very useful for fast indexing your website by Google. Now adding a sitemap to your blogger blog is easy and faster than before. Because now blogger automatically generates a sitemap for each blogger blog. This sitemap URL will be: http://YOURBLOGNAME.blogspot.com/sitemap.xml To submit this sitemap to webmaster tools, [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/submit-blogger-sitemap-webmaster-tools/">How to Submit Blogger Sitemap to Google Webmaster Tools</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Submitting a sitemap to a Webmaster Tools is very useful for fast indexing your website by Google. Now adding a sitemap to your blogger blog is easy and faster than before. Because now blogger automatically generates a sitemap for each blogger blog. This sitemap URL will be:</p>
<p><em><span style="text-decoration: underline;">http://<strong>YOURBLOGNAME</strong>.blogspot.com/sitemap.xml</span></em></p>
<p>To submit this sitemap to webmaster tools, first login to your Google Webmaster tool account.</p>
<p><a href="https://www.google.com/webmasters/tools/home" target="_blank" rel="nofollow">https://www.google.com/webmasters/tools/home</a></p>
<p>Go to your "<strong>Site Dashboard</strong>".</p>
<p>Now navigate to "Crawl" -&gt; "<strong>Sitemaps</strong>".</p>
<p>Click on "<span style="color: #ff0000;"><strong>Add/Test Sitemap</strong></span>" button.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5357" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/03/Google-Webmaster-Tools-Sitemaps.png" alt="Google Webmaster Tools Sitemaps" width="614" height="456" /></p>
<p>In popup window, type "<span style="color: #ff00ff;"><strong>sitemap.xml</strong></span>" and click on "<strong>Submit Sitemap</strong>" button.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5358" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/03/Google-Webmaster-Tools-Add-a-Sitemap.png" alt="Google Webmaster Tools - Add a Sitemap" width="614" height="328" /></p>
<p>Now you have successfully submitted your sitemap to Google.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/submit-blogger-sitemap-webmaster-tools/">How to Submit Blogger Sitemap to Google Webmaster Tools</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/submit-blogger-sitemap-webmaster-tools/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Reduce Bounce Rate Of Your Blog / Website</title>
		<link>https://www.bloggertipandtrick.net/reduce-bounce-rate-blog-website/</link>
					<comments>https://www.bloggertipandtrick.net/reduce-bounce-rate-blog-website/#respond</comments>
		
		<dc:creator><![CDATA[Keerthi Bandara]]></dc:creator>
		<pubDate>Mon, 09 Feb 2015 09:37:37 +0000</pubDate>
				<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[make money online]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5322</guid>

					<description><![CDATA[<p>Bounce rate is very important factor of your website.  It is playing very crucial role with your web site traffic and income. We can explain bounce rate like this. Rate of when visitors came in your website and immediately click back button on your browser. This is actually very disadvantage point to your website. It [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/reduce-bounce-rate-blog-website/">How To Reduce Bounce Rate Of Your Blog / Website</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Bounce rate is very important factor of your website.  It is playing very crucial role with your web site traffic and income. We can explain bounce rate like this. Rate of when visitors came in your website and immediately click back button on your browser.</p>
<figure id="attachment_5324" aria-describedby="caption-attachment-5324" style="width: 590px" class="wp-caption alignnone"><a href="https://www.bloggertipandtrick.net/wp-content/uploads/2015/02/ZERO-BOUNCE-WordPress-Plugin.jpg"><img loading="lazy" decoding="async" class="wp-image-5324 size-full" title="ZERO BOUNCE WordPress Plugin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/02/ZERO-BOUNCE-WordPress-Plugin.jpg" alt="ZERO BOUNCE WordPress Plugin" width="590" height="189" /></a><figcaption id="caption-attachment-5324" class="wp-caption-text">ZERO BOUNCE WordPress Plugin</figcaption></figure>
<p>This is actually very disadvantage point to your website. It is loss of traffic! Loss of traffic means loss of your sales or income. So, you need to more attention about your bounce rate.</p>
<p>These days bounce rate is major factor to go higher ranking in search engine. So, people are trying to reduce their bounce rate many ways.</p>
<p>If your run WordPress website, I have great news for you to <em>reduce bounce rate</em> and <em>increase your income</em>. It is a WordPress plugin called " <a href="http://forcespark.net/?ref=68" target="_blank" rel="nofollow"><em><strong>ZERO BOUNCE WordPress Plugin</strong></em></a> " that has great ability to reduce your bounce rate and increase your income. According to their observation 50% -70% your valuable traffic leave your website without spend time in your website. You can redirect them to coupons, discounts, Amazon, and other offers pages. The point is get more sales from that loosing traffic.</p>
<figure id="attachment_5325" aria-describedby="caption-attachment-5325" style="width: 590px" class="wp-caption alignnone"><a href="https://www.bloggertipandtrick.net/wp-content/uploads/2015/02/ZERO-BOUNCE-WordPress-Plugin1.jpg"><img loading="lazy" decoding="async" class="wp-image-5325 size-full" title="ZERO BOUNCE WordPress Plugin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/02/ZERO-BOUNCE-WordPress-Plugin1.jpg" alt="ZERO BOUNCE WordPress Plugin" width="590" height="352" /></a><figcaption id="caption-attachment-5325" class="wp-caption-text">ZERO BOUNCE WordPress Plugin</figcaption></figure>
<p>&nbsp;</p>
<p>The post <a href="https://www.bloggertipandtrick.net/reduce-bounce-rate-blog-website/">How To Reduce Bounce Rate Of Your Blog / Website</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/reduce-bounce-rate-blog-website/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Verify Site Ownership Using CNAME Record</title>
		<link>https://www.bloggertipandtrick.net/verify-ownership-using-cname-record-webmaster-tools/</link>
					<comments>https://www.bloggertipandtrick.net/verify-ownership-using-cname-record-webmaster-tools/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Fri, 24 Oct 2014 04:44:36 +0000</pubDate>
				<category><![CDATA[google]]></category>
		<category><![CDATA[webmaster tools]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=5052</guid>

					<description><![CDATA[<p>When you are going to add your site into Google Webmaster Tools or to other webmaster tool service, you are asked to verify your site ownership first to continue. Google Webmaster Tools gives different verification methods. These site verification methods are: Using your Google Analytics account. Uploading an HTML file to your site. Using your [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/verify-ownership-using-cname-record-webmaster-tools/">How to Verify Site Ownership Using CNAME Record</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When you are going to add your site into Google Webmaster Tools or to other webmaster tool service, you are asked to verify your site ownership first to continue. Google Webmaster Tools gives different verification methods. These site verification methods are:</p>
<ul>
<li>Using your Google Analytics account.</li>
<li>Uploading an HTML file to your site.</li>
<li>Using your Google Tag Manager account.</li>
<li>Using your domain name provider.</li>
<li>Using HTML meta tag.</li>
</ul>
<p>In this tutorial, I am going to show you how to do your site verification using your domain name provider. We can do it in 2 different way: using "<strong>TXT record</strong>" or using "<strong>CNAME record</strong>". Here I am going to do it using a <span style="color: #ff00ff;"><strong>CNAME record</strong></span>.</p>
<p>First go to your <a href="https://www.google.com/webmasters/tools/home" target="_blank" rel="nofollow"><strong>Google Webmaster Tools</strong></a> account.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/Google-Webmaster-Tools.png" alt="Google Webmaster Tools" width="680" height="246" class="alignnone size-full wp-image-5054" /></p>
<p>Click on your site name. You can see "<strong>Site Dashboard</strong>" of your site.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/Site-Dashboard-Google-Webmaster-Tools.png" alt="Site Dashboard - Google Webmaster Tools" width="646" height="330" class="alignnone size-full wp-image-5055" /></p>
<p>In top right corner of the page, there is a little gear icon. Click on it and select "<span style="color: #ff00ff;"><strong>Verification Details</strong></span>".</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/Verification-Details-Google-Webmaster-Tools.png" alt="Verification Details - Google Webmaster Tools" width="412" height="247" class="alignnone size-full wp-image-5056" /></p>
<p>I have already verified my site using a HTML meta tag. So here I select "<span style="color: #ff00ff;"><strong>Verify using a different method.</strong></span>".</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/Site-Verification-Page-Google-Webmaster-Tools.png" alt="Site Verification Page - Google Webmaster Tools" width="607" height="154" class="alignnone size-full wp-image-5057" /></p>
<p>Now you can see all "Verification methods" available. Select "<span style="color: #ff00ff;"><strong>Domain name provider</strong></span>".</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/Verification-Methods-Google-Webmaster-Tools.png" alt="Verification Methods - Google Webmaster Tools" width="350" height="492" class="alignnone size-full wp-image-5058" /></p>
<p>Select "<strong>Other</strong>" from drop down menu.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/Select-Other-from-Domain-Name-Provider.png" alt="Select Other from Domain Name Provider" width="420" height="603" class="alignnone size-full wp-image-5059" /></p>
<p>Now click on "<span style="color: #ff00ff;"><strong>Add a CNAME record.</strong></span>"</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/Add-a-CNAME-record.png" alt="Add a CNAME record" width="700" height="431" class="alignnone size-full wp-image-5060" /></p>
<p>You can see CNAME record details related to your site.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/CNAME-record-details.png" alt="CNAME record details" width="700" height="326" class="alignnone size-full wp-image-5061" /></p>
<p>Copy "<strong>CNAME Label / Host</strong>" and "<strong>CNAME Destination / Target</strong>" values for later use.</p>
<p>Now go to your domain name provider. Go to edit your <strong>DNS zone settings</strong>. Location of DNS settings is different according to your domain name provider. But it is easy to find.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/DNS-Zone-Editor.png" alt="DNS Zone Editor" width="508" height="166" class="alignnone size-full wp-image-5062" /></p>
<p>Create a new CNAME record to our domain using your copied CNAME records details from webmaster tools.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/Add-a-CNAME-Record-to-Your-Domain.png" alt="Add a CNAME Record to Your Domain" width="600" height="147" class="alignnone size-full wp-image-5063" /></p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/CNAME-Added.png" alt="CNAME Added" width="649" height="196" class="alignnone size-full wp-image-5064" /></p>
<p>Now wait few minutes. Finally click "<strong>Verify</strong>" button in webmaster tool.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/Click-Verify-Button-Webmaster-Tools.png" alt="Verify Button - Webmaster Tools" width="217" height="60" class="alignnone size-full wp-image-5065" /></p>
<p>You will see a verification successful message.</p>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/10/Verification-Successful-Google-Webmaster-Tools.png" alt="Verification Successful - Webmaster Tools" width="600" height="123" class="alignnone size-full wp-image-5066" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/verify-ownership-using-cname-record-webmaster-tools/">How to Verify Site Ownership Using CNAME Record</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/verify-ownership-using-cname-record-webmaster-tools/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
