Vorlage:Quest

Aus Meddlerde
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">

<div style="border: 2px solid #4CAF50; padding: 20px; background-color: #f9f9f9; border-radius: 10px; font-family: 'Roboto', sans-serif;">
    <h2 style="color: #4CAF50; text-align: center;">Quest Tracker</h2>
    <table style="width: 100%; border-collapse: collapse; margin-bottom: 20px;">
        <thead>
            <tr style="background-color: #4CAF50; color: white;">
                <th style="padding: 10px; border: 1px solid #ddd;">Quest Name</th>
                <th style="padding: 10px; border: 1px solid #ddd;">Description</th>
                <th style="padding: 10px; border: 1px solid #ddd;">Status</th>
                <th style="padding: 10px; border: 1px solid #ddd;">Assigned To</th>
                <th style="padding: 10px; border: 1px solid #ddd;">Notes</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td style="padding: 10px; border: 1px solid #ddd;">Retrieve the Ancient Artifact</td>
                <td style="padding: 10px; border: 1px solid #ddd;">Find and bring back the ancient artifact from the ruins.</td>
                <td style="padding: 10px; border: 1px solid #ddd;">In Progress</td>
                <td style="padding: 10px; border: 1px solid #ddd;">Elara</td>
                <td style="padding: 10px; border: 1px solid #ddd;">Need to find the map first.</td>
            </tr>
        </tbody>
    </table>
</div>