Skip to content

Test

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Simple Bar Chart</title>
    <style>
        .chart {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            height: 200px;
            border-left: 2px solid black;
            border-bottom: 2px solid black;
            padding-left: 10px;
        }
        .bar {
            width: 40px;
            background-color: #4CAF50;
            text-align: center;
            color: white;
            margin-top: auto;
        }
    </style>
</head>
<body>
    <h1>Bar Chart Example</h1>
    <div class="chart">
        <div class="bar" style="height: 50px;">5</div>
        <div class="bar" style="height: 100px;">10</div>
        <div class="bar" style="height: 150px;">15</div>
        <div class="bar" style="height: 200px;">20</div>
    </div>
</body>