Skip to content
Snippets Groups Projects
template.html 628 B
Newer Older
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>My formatted table</title>
        <meta charset="UTF-8">
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    </head>
    <body>
        <div class="container">
        <h1 class="text-center">My formatted table</h1>
        <hr />
        <table class="table">
            <thead>
                <tr><th>First name</th><th>Last name</th><th>E-Mail</th></tr>
            </thead>
            <tbody>
                {}
            </tbody>
        </table>
        <hr />
        </div>
    </body>
</html>