<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Minimal Stock Overview</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
        }
        header {
            text-align: center;
            margin-bottom: 20px;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
        }
        .stock-section {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .stock-section div {
            text-align: center;
            padding: 10px;
            border: 1px solid #ccc;
            flex: 1;
            margin: 0 5px;
        }
        a {
            text-decoration: none;
            color: #333;
        }
        a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>

<header>
    <h1>Stock Market Overview</h1>
</header>

<div class="container">
    <div class="stock-section">
        <div>
            <h3>News</h3>
            <a href="#">Latest Stock News</a>
        </div>
        <div>
            <h3>Analysis</h3>
            <a href="#">Market Analysis</a>
        </div>
        <div>
            <h3>Charts</h3>
            <a href="#">Stock Charts</a>
        </div>
    </div>

    <div class="stock-section">
        <div>
            <h3>Gainers</h3>
            <a href="#">Top Gainers</a>
        </div>
        <div>
            <h3>Losers</h3>
            <a href="#">Top Losers</a>
        </div>
        <div>
            <h3>Tips</h3>
            <a href="#">Investment Tips</a>
        </div>
    </div>
</div>

</body>
</html>