Ads

Monday, January 8, 2024

Goole Analytics Add In Blogger ll Google Analytics In Hindi

 Goole Analytics Add In Blogger ll Google Analytics In Hindi






    • Go to Google Analytics.
    • Sign in with your Google account or create a new one.
    • Set up a new property for your Blogger site by following the setup wizard. This will provide you with a Tracking ID (something like UA-XXXXXXXXX-X).
  1. Add Tracking Code to Blogger:

    • Sign in to your Blogger account.
    • Go to the dashboard of the blog you want to track.
    • Navigate to Settings > Analytics.
    • Enter your Google Analytics Tracking ID in the provided field.
    • Save your settings.
  2. Verify Tracking:

    • To ensure that the tracking code is working, visit your site and then check the Real-Time section in Google Analytics to see if it registers your visit.

2. Real Human Typing Effect

If you're looking to create a "real human typing" effect on your Blogger site (e.g., for an introduction or a particular section), you can use JavaScript and CSS to achieve this. Here’s a basic example:

  1. Add Typing Effect Script:
    • Go to the Theme section in your Blogger dashboard.
    • Click on Edit HTML.
    • Add the following JavaScript code before the </head> tag in your theme:
html
<script> document.addEventListener("DOMContentLoaded", function() { const element = document.getElementById('typing-effect'); const text = "Hello, welcome to my blog!"; let index = 0; function type() { if (index < text.length) { element.textContent += text.charAt(index); index++; setTimeout(type, 100); } } type(); }); </script>
  1. Add Typing Effect Container:
    • Find the location in your blog’s HTML where you want the typing effect to appear.
    • Insert the following HTML:
html
<div id="typing-effect"></div>
  1. Style the Typing Effect (Optional):
    • You can add some CSS to style the text and make it look more realistic. For example:
html
<style> #typing-effect { font-family: 'Courier New', Courier, monospace; font-size: 20px; white-space: nowrap; overflow: hidden; border-right: 3px solid black; animation: blink-caret 0.75s step-end infinite; } @keyframes blink-caret { from, to { border-color: transparent; } 50% { border-color: black; } } </style>

Putting It All Together

After following these steps, your Blogger site should have Google Analytics tracking enabled and a typing effect where you’ve inserted the #typing-effect div. The typing effect will simulate real human typing by incrementally displaying characters.

If you need any more detailed instructions or run into issues, feel free to ask!



Goole Analytics Add In Blogger Google Analytics In Hindi Website Link ( https://higheearningtips.blogspot.com/ ) YouTube Channels Link Aditya Chindalia https://youtube.com/@AdityaChindalia?si=5GBXHEoxbnFXouZl Aditya Chindalia Vlog https://youtube.com/@AdityaChindaliaVlogs?si=PGeKDSZNB8BWvsr7 AMS Story Channel https://youtube.com/@AMS_Story7830?si=6o_C5dyM6ADmTBZb HighEarningTips Channel https://youtube.com/@HighEarningTips?si=I_N85kfhCV-MWLI4 Facebook https://www.facebook.com/aditya.chindalia.31?mibextid=ZbWKwL Instagram https://instagram.com/aditya_chindalia?igshid=OGQ5ZDc2ODk2ZA== Twitter https://x.com/AdityaChindali6?t=qRars1yUj6mh8WNxihHcjQ&s=09 Thank you for watching everyone 😊

No comments:

Post a Comment