<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Custom Table Width</title>
    <style>
        /* CSS to customize the table width */
        .custom-width-table {
            width: 50%; /* Set desired width here, e.g., 50%, 300px, etc. */
            border-collapse: collapse; /* Optional: for border style */
        }
        
        .custom-width-table td {
            border: 2px solid #646464; /* Optional: for border style */
            padding: 15px; /* Optional: for padding inside cells */
        }
    </style>
</head>
