<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Welcome to Tanki!</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
            color: #333;
        }

        .container {
            max-width: 800px;
            margin: 50px auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        h1 {
            color: #007bff;
        }

        p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

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

        .advertisement {
            margin-top: 50px;
        }

        .advertisement img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        nav {
            background-color: #333;
            padding: 10px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        nav .logo {
            margin-left: 20px;
        }

        nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        nav ul li {
            display: inline;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            transition: background-color 0.3s;
        }

        nav ul li a:hover {
            background-color: #555;
        }
    </style>
</head>
<body>
    <nav>
        <div class="logo">
            <img src="logo.png" alt="Tanki Logo">
        </div>
        <ul>
            <li><a href="/about">About</a></li>
            <li><a href="/game">Game</a></li>
            <li><a href="/link">Link</a></li>
        </ul>
    </nav>
    <div class="container">
        <h1>Welcome to Tanki!</h1>
        <p>Experience the thrill of tank battles like never before. Join our community of players and dominate the battlefield!</p>
        <p>Get started now:</p>
        <a href="/about" class="btn">Learn More</a>
        
        <!-- Advertisement Section -->
        <div class="advertisement">
            <h2>Check out our latest game: Tanks 2D</h2>
            <p>Engage in fast-paced 2D tank battles with stunning graphics and intense gameplay!</p>
            <img src="https://img.poki.com/cdn-cgi/image/quality=78,width=314,height=314,fit=cover,f=auto/2fc66b5540735bef2565f422131519d8.png" alt="Tanks 2D Advertisement">
        </div>
    </div>
</body>
</html>