Privacy english vidya

 Priacy html 



<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>

  <title>Privacy Policy | English Vidya</title>

  <meta name="description" content="Read English Vidya’s privacy policy to understand how we collect, use, and protect your data. We respect your privacy.">

  <style>

    body {

      font-family: Arial, sans-serif;

      padding: 30px;

      background: #f9f9f9;

      color: #333;

      line-height: 1.8;

    }

    .container {

      max-width: 900px;

      background: #fff;

      padding: 30px;

      margin: auto;

      border-radius: 12px;

      box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    }

    h1, h2 {

      color: #007bff;

    }

    ul {

      margin-left: 20px;

    }

    a {

      color: #007bff;

    }

  </style>

</head>

<body>

  <div class="container">

    <h1>Privacy Policy</h1>

    <p>Welcome to <strong>English Vidya</strong>. Your privacy is very important to us. This policy explains what information we collect, how we use it, and how we keep it safe.</p>


    <h2>1. Information We Collect</h2>

    <ul>

      <li><strong>WhatsApp:</strong> When you contact us via WhatsApp, we collect your name and phone number. We use this to send updates through our WhatsApp status.</li>

      <li><strong>Website Comments:</strong> When you comment on our articles, your name and email address may be required.</li>

      <li><strong>Cookies:</strong> We may use cookies to improve your experience on our website (e.g., to remember your preferences or embed YouTube videos).</li>

      <li><strong>Analytics:</strong> We use Google Analytics to understand website traffic and user behavior. In the future, we may use tools like Facebook Pixel.</li>

    </ul>


    <h2>2. How We Use Your Information</h2>

    <ul>

      <li>To send you English learning updates via WhatsApp</li>

      <li>To improve our website and content</li>

      <li>To respond to your questions and comments</li>

    </ul>


    <h2>3. Data Sharing</h2>

    <p>We <strong>do not share</strong> your personal information with third parties. All information stays private and is used only for English Vidya purposes.</p>


    <h2>4. Your Control Over Your Data</h2>

    <p>If you wish to remove your phone number from our records, simply message us on <a href="https://wa.me/917070133396" target="_blank">WhatsApp</a> and we will delete it. Please note: any information collected by automated tools like Google Analytics cannot be deleted manually.</p>


    <h2>5. Data Protection</h2>

    <p>We take steps to protect your data and follow guidelines of India’s <strong>Digital Personal Data Protection Act (DPDPA)</strong> and international standards like <strong>GDPR</strong>.</p>


    <h2>6. Policy Updates</h2>

    <p>This policy may change in the future. We’ll update this page whenever changes are made.</p>


    <h2>7. Contact Us</h2>

    <p>If you have any questions, feel free to <a href="https://englishvidya.com/contact-us/" target="_blank">contact us</a> or message on <a href="https://wa.me/917070133396" target="_blank">WhatsApp</a>.</p>

  </div>

</body>

</html>




necessary menu html




<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Quick Links | English Vidya</title>
  <style>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f5f9ff;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
      min-height: 100vh;
    }

    .link-container {
      text-align: center;
    }

    h1 {
      margin-bottom: 30px;
      color: #007bff;
      font-size: 2rem;
    }

    .link-button {
      display: inline-block;
      margin: 12px;
      padding: 14px 28px;
      font-size: 1.1rem;
      color: #fff;
      background: #007bff;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .link-button::after {
      content: "";
      background: rgba(255, 255, 255, 0.2);
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      transform: skewX(-45deg);
      transition: left 0.5s ease;
    }

    .link-button:hover::after {
      left: 100%;
    }

    .link-button:hover {
      background-color: #0056b3;
    }

    @media (max-width: 600px) {
      .link-button {
        display: block;
        width: 100%;
        margin: 10px auto;
      }
    }
  </style>
</head>
<body>
  <div class="link-container">
    <h1>Explore English Vidya</h1>
    
    <a href="https://englishvidya.com" class="link-button" target="_blank">🏠 Home</a>
    <a href="https://englishvidya.com/about-us/" class="link-button" target="_blank">About Us</a>
    <a href="https://englishvidya.com/contact-us/" class="link-button" target="_blank">Contact Us</a>
    <a href="https://englishvidya.com/privacy-policy/" class="link-button" target="_blank">Privacy Policy</a>
    <a href="https://englishvidya.com/terms-of-service/" class="link-button" target="_blank">Terms of Service</a>
  </div>
</body>
</html>