<!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>İstanbul</title>
	<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JCD6F0LW79"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-JCD6F0LW79');
</script>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        header {
            background-color: #333;
            color: white;
            padding: 10px 0;
            text-align: center;
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
        }

        main {
            padding: 20px;
            background-color: #f4f4f4;
        }

        main section {
            margin-bottom: 20px;
        }

        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px 0;
        }

        footer section {
            margin: 0 auto;
        }
    </style>
</head>
<body>
<header>
    <h1>İstanbul</h1>
    <nav>
        <ul>
            <li><a href="#">Home</a></li>
            <li><a href="#">About Us</a></li>
            <li><a href="#">Products</a></li>
            <li><a href="#">Contact</a></li>
        </ul>
    </nav>
</header>
<main>
    <section id="about">
        <h2>About Us</h2>
        <p>We provide the latest and greatest technology products in the industry. Our mission is to deliver high-quality tech gadgets to our customers.</p>
    </section>
    <section id="hours">
        <h2>Working Hours</h2>
        <p>Monday - Friday: 9 AM - 6 PM</p>
        <p>Saturday: 10 AM - 4 PM</p>
        <p>Sunday: Closed</p>
    </section>
    <section id="products">
        <h2>Our Products</h2>
        <ul>
            <li>Smartphones</li>
            <li>Laptops</li>
            <li>Tablets</li>
            <li>Accessories</li>
            <li>Wearable Tech</li>
        </ul>
    </section>
</main>
<footer>
    <section id="contact">
        <h2>Contact Us</h2>
        <p>Email: info@techproducts.com</p>
        <p>Phone: +1 (652) 465-7790</p>
        <p>Address: 95874JK Tech Avenue, Silicon Valley, CA</p>
    </section>
</footer>
</body>
</html>

