<!DOCTYPE html>
<html lang="en">
<head>
<!-- Event snippet for Purchase conversion page -->
<script>
  gtag('event', 'conversion', {
      'send_to': 'AW-17265694623/i26KCPvr7uIaEJ-v9qhA',
      'transaction_id': ''
  });
</script>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-17265694623">
</script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'AW-17265694623');
</script>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>My WordPress Page</title>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 50px;
      background-color: #ffffff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .logo img {
      height: 50px;
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }
    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
      font-size: 16px;
    }
    nav ul li a:hover {
      color: #007bff;
    }
    .hero {
      width: 100%;
      height: 500px;
      background-image: url('https://your-image-link.com/hero.jpg');
      background-size: cover;
      background-position: center;
    }
  </style>
</head>
<body>

  <header>
    <div class="logo">
      <a href="/"><img src="https://your-logo-link.com/logo.png" alt="Site Logo" /></a>
    </div>
    <nav>
      <ul>
        <li><a href="#pricing">PRICING</a></li>
        <li><a href="#about">ABOUT</a></li>
        <li><a href="#contact">CONTACT</a></li>
      </ul>
    </nav>
  </header>

  <div class="hero"></div>

</body>
</html>
